Skip to main content
GET
/
call
/
{callId}
cURL
curl --request GET \
  --url https://api.meetzy.io/call/{callId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "playbook_name": "<string>",
  "playbook_id": "<string>",
  "from": "<string>",
  "to": "<string>",
  "status": "<string>",
  "duration": 123,
  "transcript": "<string>",
  "summary": "<string>",
  "data": "<string>",
  "success": true,
  "recording": true,
  "created_time": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Call response

id
string

Unique identifier of the call.

playbook_name
string

Name of the playbook used during the call.

playbook_id
string

Unique identifier of the playbook used during the call.

from
string

Phone number that initiated the call.

to
string

Phone number that received the call.

status
string

Current status of the call, possible values include: 'ringing', 'open', 'closed', 'no-answer', 'voicemail', 'busy', 'recall-scheduled', 'wrong-phone-format'.

duration
integer

Duration of the call in seconds.

transcript
string

Full transcription of the call in HTML format.

summary
string

Brief summary of the conversation during the call.

data
string

Parameters received to initiate the call.

success
boolean

Indicates whether the objectives defined in the playbook were met.

recording
boolean

Indicates whether the call was recorded.

created_time
string

Timestamp for when the call was initiated, formatted as YYYY-MM-DD HH:MM:SS in UTC (Z). For example, a created_time of '2024-01-28 16:16:56' corresponds to '2024-01-28 18:16:56' in Spain (UTC +2).