GET
/
api
/
v1
/
calls
curl --request GET \
  --url https://cx-staging-three.fly.dev/api/v1/calls \
  --header 'Authorization: Basic <encoded-value>'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "in-progress",
  "agentPhone": "+1234567890",
  "customerPhone": "+1234567890",
  "agentId": "123e4567-e89b-12d3-a456-426614174000",
  "customerId": "123e4567-e89b-12d3-a456-426614174000",
  "skillId": "123e4567-e89b-12d3-a456-426614174000",
  "customerName": "John Doe",
  "transcription": "Hello, how can I help you?",
  "recordingUrl": "https://example.com/recording.wav"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

dateRange
object
hrs
number
status
enum<string>
Available options:
failed,
voicemail,
answer,
completed,
busy,
open,
close,
closed,
resolved,
no-answer,
canceled,
ongoing,
pending,
stalled,
expired,
processing
channel
enum<string>
Available options:
call,
sms,
whatsapp,
webchat
sanitised
string

Response

200
application/json
Returns the call
id
string
required

Interaction ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

status
string
required

Interaction status

Example:

"in-progress"

agentPhone
string
required

Agent phone number

Example:

"+1234567890"

customerPhone
string
required

Customer phone number

Example:

"+1234567890"

agentId
string
required

Agent ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

customerId
string
required

Customer ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

skillId
string
required

Skill ID

Example:

"123e4567-e89b-12d3-a456-426614174000"

customerName
string
required

Customer name

Example:

"John Doe"

transcription
string
required

Transcription

Example:

"Hello, how can I help you?"

recordingUrl
string
required

Recording URL

Example:

"https://example.com/recording.wav"