Recordings
Delete and query the available Recordings in Twilio.
Select
Twilio allows only a small subset of columns to be used in the WHERE clause of a SELECT query. These columns can typically be used with only the equals or = comparison. The available columns for Recordings are CallSid, DateCreated, and Sid. DateCreated may be used with the >, >=, <, <=, or = conditions.
SELECT * FROM Recordings WHERE DateCreated > '2011-10-10'
Insert
Twilio does not allow Recordings to be added.
Update
Twilio does not allow Recordings to be updated.
Delete
DELETE FROM Recordings WHERE Sid='REfb1f22afc4f6243242'
Columns
Name | Type | ReadOnly | References | Description |
Sid [KEY] | String | False |
The Id of the recording. | |
ApiVersion | String | False |
The API version of the recording. | |
CallSid | String | False |
The Id of the call for the recording. | |
DateCreated | Datetime | False |
The creation date of the recording. | |
DateUpdated | Datetime | False |
The modification date of the recording. | |
Duration | Double | False |
The duration of the recording in seconds. | |
AccountSid | String | False |
The account Id of the recording. | |
Uri | String | False |
The URI of the recording. |