curl --request POST \
--url https://api.example.com/api/Conversation/import-ms-teams \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"conversationImportRequestDto": {
"checklistId": 123,
"channelId": 123,
"tenantId": 123,
"conversationIntegrationType": 0,
"userEmail": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"clientName": "<string>",
"fileUrl": "<string>",
"fileName": "<string>",
"queueId": 123,
"agentType": 0,
"conversationType": 0,
"applicationStatusId": 123
},
"conversationImportMicrosoftTeamsEntryDtos": [
{
"id": "<string>",
"speechServiceResultId": "<string>",
"text": "<string>",
"speakerId": "<string>",
"speakerDisplayName": "<string>",
"confidence": 123,
"startOffset": "<string>",
"endOffset": "<string>",
"hasBeenEdited": true,
"roomId": "<string>",
"spokenLanguageTag": "<string>"
}
]
}
'