Search + K

Command Palette

Search for a command to run...

Sign In

Fetch the call specified by the provided Call SID

GET /2010-04-01/Accounts/{AccountSid}/Calls/{Sid}.json
Copy endpoint
https://api.twilio.com

Fetch the call specified by the provided Call SID

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created the Call resource(s) to fetch.

`AC${string}`
Sid required

The SID of the Call resource to fetch.

`CA${string}`

Responses

200 application/json

OK

interface ApiV2010AccountCall {
sid?: `CA${string}` | null;
date_created?: string | null;
date_updated?: string | null;
parent_call_sid?: `CA${string}` | null;
account_sid?: `AC${string}` | null;
to?: string | null;
to_formatted?: string | null;
from?: string | null;
from_formatted?: string | null;
phone_number_sid?: `PN${string}` | null;
status?: CallEnumStatus

The status of this call. Can be: queued, ringing, in-progress, canceled, completed, failed, busy or no-answer. See Call Status Values below for more information.

type CallEnumStatus = "queued" | "ringing" | "in-progress" | "completed" | "busy" | "failed" | "no-answer" | "canceled"
;
start_time?: string | null;
end_time?: string | null;
duration?: string | null;
price?: string | null;
price_unit?: string | null;
direction?: string | null;
answered_by?: string | null;
api_version?: string | null;
forwarded_from?: string | null;
group_sid?: `GP${string}` | null;
caller_name?: string | null;
queue_time?: string | null;
trunk_sid?: `TK${string}` | null;
uri?: string | null;
subresource_uris?: {} | null;
}