Skip to main content
GET
/
comms
/
call
/
{call_id}
/
transcript
Get Transcript
curl --request GET \
  --url https://api.decodahealth.com/comms/call/{call_id}/transcript \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
{
  "speakers": [
    {
      "id": "<string>",
      "type": "PROVIDER",
      "firstName": "<string>",
      "lastName": "<string>",
      "phoneNumber": "<string>",
      "email": "<string>",
      "locationId": "<string>"
    }
  ],
  "transcripts": [
    {
      "speakerId": "<string>",
      "content": "<string>",
      "order": 123,
      "startTime": "2023-11-07T05:31:56Z",
      "endTime": "2023-11-07T05:31:56Z"
    }
  ]
}

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Path Parameters

call_id
string
required

Response

Successful Response

speakers
UserTiny · object[]
required
transcripts
TranscriptDetail · object[]
required