I'm currently using the .NET SDK to fetch conversation recordings via the GetConversationRecordings API (/api/v2/conversations/{conversationId}/recordings
). However, I've encountered an issue where several fields present in the API response are missing from the corresponding .NET SDK response class (List<Recording>
).
The fields missing in the .NET SDK are:
externalContacts
participantId
events
workflow
(includesid
andselfUri
)queue
(includesid
andselfUri
)
These fields are returned correctly when using Postman, but they do not have definitions in the Recording
class provided by the .NET SDK.
Could anyone assist me in accessing these fields using the .NET SDK? If these fields are not currently included in the SDK, can the SDK be updated to support them?