POST
/
v1
/
Inbound
/
{inboundId}
/
Calls
curl --request POST \
  --url https://api.nlpearl.ai/v1/Inbound/{inboundId}/Calls \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "skip": 123,
  "limit": 123,
  "sortProp": "<string>",
  "isAscending": true,
  "fromDate": "2023-11-07T05:31:56Z",
  "toDate": "2023-11-07T05:31:56Z",
  "tags": [
    "<string>"
  ],
  "statuses": [
    123
  ],
  "searchInput": "<string>"
}'
{
  "count": 123,
  "results": [
    {
      "id": "<string>",
      "startTime": "2023-11-07T05:31:56Z",
      "conversationStatus": 123,
      "status": 123,
      "from": "<string>",
      "to": "<string>",
      "duration": 123,
      "tags": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Specify the authorization token.

For more information, check out the Authorization Guide.

Path Parameters

inboundId
string
required

The unique identifier of the inbound configuration.

Body

The search criteria including date range and sorting parameters.

The body is of type object.

Response

200
text/plain

Calls within the specified date range for inbound.

The response is of type object.