IntegrationsTwilioActions
Get Twilio call
Fetch a Twilio Call resource by SID.
calls.get · Twilio · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
call_sid | string | Yes | minLength 34; maxLength 34; pattern ^CA[0-9a-fA-F]{32}$ |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
sid | string | Yes | minLength 34; maxLength 34; pattern ^CA[0-9a-fA-F]{32}$ |
status | string | Yes | minLength 1; maxLength 64 |
from | string | Yes | maxLength 32 |
to | string | Yes | maxLength 32 |
direction | string | No | maxLength 64 |
duration | string | No | maxLength 32 |
start_time | string | No | maxLength 64 |
end_time | string | No | maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"call_sid": {
"type": "string",
"minLength": 34,
"maxLength": 34,
"pattern": "^CA[0-9a-fA-F]{32}$"
}
},
"required": [
"call_sid"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"sid": {
"type": "string",
"minLength": 34,
"maxLength": 34,
"pattern": "^CA[0-9a-fA-F]{32}$"
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"from": {
"type": "string",
"maxLength": 32
},
"to": {
"type": "string",
"maxLength": 32
},
"direction": {
"type": "string",
"maxLength": 64
},
"duration": {
"type": "string",
"maxLength": 32
},
"start_time": {
"type": "string",
"maxLength": 64
},
"end_time": {
"type": "string",
"maxLength": 64
}
},
"required": [
"sid",
"status",
"from",
"to"
]
}