action twilio_fetch_recording_add_on_result_payload { label: "FetchRecordingAddOnResultPayload" description: "Fetch an instance of a result payload" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Recordings/{ReferenceSid}/AddOnResults/{AddOnResultSid}/Payloads/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } AddOnResultSid: { type: "string" } ReferenceSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "AddOnResultSid", "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 Payload resource." } add_on_configuration_sid: { type: "string" description: "The SID of the Add-on configuration." } add_on_result_sid: { type: "string" description: "The SID of the AddOnResult to which the payload belongs." } add_on_sid: { type: "string" description: "The SID of the Add-on to which the result belongs." } content_type: { type: "string" description: "The MIME type of the payload." } 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." } label: { type: "string" description: "The string provided by the vendor that describes the payload." } reference_sid: { type: "string" description: "The SID of the recording to which the AddOnResult resource that contains the payload belongs." } sid: { type: "string" description: "The unique string that that we created to identify the Recording AddOnResult Payload resource." } subresource_uris: { type: "object" format: "uri-map" description: "A list of related resources identified by their relative URIs." } } } }