action twilio_fetch_media { label: "FetchMedia" description: "Fetch a single media instance belonging to the account used to make the request" provider: twilio method: GET path: "/2010-04-01/Accounts/{AccountSid}/Messages/{MessageSid}/Media/{Sid}.json" encoding: json input: { type: "object" properties: { AccountSid: { type: "string" } MessageSid: { type: "string" } Sid: { type: "string" } } required: ["AccountSid", "MessageSid", "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 this Media resource." } content_type: { type: "string" description: "The default [mime-type](https://en.wikipedia.org/wiki/Internet_media_type) of the media, for example `image/jpeg`, `image/png`, or `image/gif`" } date_created: { type: "string" format: "date-time-rfc-2822" description: "The date and time in GMT that this 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 this resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format." } parent_sid: { type: "string" description: "The SID of the resource that created the media." } sid: { type: "string" description: "The unique string that that we created to identify this Media resource." } uri: { type: "string" description: "The URI of this resource, relative to `https://api.twilio.com`." } } } }