action twilio_list_recording_add_on_result { label: "ListRecordingAddOnResult" description: "Retrieve a list of results belonging to the recording" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } Page: { type: "integer" } PageSize: { type: "integer" } PageToken: { type: "string" } ReferenceSid: { type: "string" } } required: ["AccountSid", "ReferenceSid"] additionalProperties: false } output: { type: "object" properties: { add_on_results: { type: "array" items: { type: "object" properties: { account_sid: { type: "string" description: "The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Recording AddOnResult resource." } add_on_configuration_sid: { type: "string" description: "The SID of the Add-on configuration." } add_on_sid: { type: "string" description: "The SID of the Add-on to which the result belongs." } date_completed: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the result was completed specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } date_updated: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that the resource was last updated specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } reference_sid: { type: "string" description: "The SID of the recording to which the AddOnResult resource belongs." } sid: { type: "string" description: "The unique string that that we created to identify the Recording AddOnResult resource." } status: { type: "string" enum: ["canceled", "completed", "deleted", "failed", "in-progress", "init", "processing", "queued"] } subresource_uris: { type: "object" format: "uri-map" description: "A list of related resources identified by their relative URIs." } } } } end: { type: "integer" } first_page_uri: { type: "string" format: "uri" } next_page_uri: { type: "string" format: "uri" } page: { type: "integer" } page_size: { type: "integer" } previous_page_uri: { type: "string" format: "uri" } start: { type: "integer" } uri: { type: "string" format: "uri" } } } }