Search + K

Command Palette

Search for a command to run...

Sign In

Fetch a single Media resource associated with a specific Message resource

GET /2010-04-01/Accounts/{AccountSid}/Messages/{MessageSid}/Media/{Sid}.json
Copy endpoint
https://api.twilio.com

Fetch a single Media resource associated with a specific Message resource

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account associated with the Media resource.

`AC${string}`
MessageSid required

The SID of the Message resource that is associated with the Media resource.

string
Sid required

The Twilio-provided string that uniquely identifies the Media resource to fetch.

`ME${string}`

Responses

200 application/json

OK

interface ApiV2010AccountMessageMedia {
account_sid?: `AC${string}` | null;
content_type?: string | null;
date_created?: string | null;
date_updated?: string | null;
parent_sid?: string | null;
sid?: `ME${string}` | null;
uri?: string | null;
}