GET
/
v1
/
Call
/
{callId}
curl --request GET \
  --url https://api.nlpearl.ai/v1/Call/{callId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "relatedId": "<string>",
  "startTime": "2023-11-07T05:31:56Z",
  "conversationStatus": 123,
  "status": 123,
  "from": "<string>",
  "to": "<string>",
  "name": "<string>",
  "duration": 123,
  "recording": "<string>",
  "transcript": [
    {
      "role": 123,
      "content": "<string>",
      "startTime": 123,
      "endTime": 123
    }
  ],
  "summary": "<string>",
  "collectedInfo": [
    {
      "id": "<string>",
      "name": "<string>",
      "value": "<any>"
    }
  ],
  "tags": [
    "<string>"
  ],
  "isCallTransferred": true,
  "overallSentiment": 123
}

Authorizations

Authorization
string
header
required

Specify the authorization token.

For more information, check out the Authorization Guide.

Path Parameters

callId
string
required

The unique identifier of the call to retrieve information for.

Response

200
text/plain

Client informations

The response is of type object.