Fetch the call specified by the provided Call SID
GET
/2010-04-01/Accounts/{AccountSid}/Calls/{Sid}.json 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 ;
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;
}
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?:
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;
}