action twilio_fetch_recording_add_on_result { label: "FetchRecordingAddOnResult" description: "Fetch an instance of an AddOnResult" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } ReferenceSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "ReferenceSid", "Sid"] additionalProperties: false } output: { 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." } } } }