List All Fax Media
GET/Accounts/:AccountSid/Faxes/:FaxSid/Media
The ability to read all of the medias that are associated with your fax. This will be returned as a list of medias.
Permissions
The API token must include the following scopes: Fax.
Request
Path Parameters
AccountSid uuidrequired
The unique identifier for the account this fax media is associated with.
FaxSid uuidrequired
The unique identifier of the fax that the media is associated with.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
uristring
first_page_uristring
next_page_uristring
previous_page_uristring
pageinteger
page_sizeinteger
media
object[]
account_siduuid
The unique identifier for the account that created this conference.
content_typeuuid
The content type of the stored media.
date_createduuid
The date and time, in ISO 8601 format, the fax media was created.
date_updateduuid
The date and time, in ISO 8601 format, the fax media was updated.
fax_siduuid
The unique identifier of the fax that the media is associated with.
siduuid
The unique identifier for the fax media.
urluuid
The URL of this resource.
{
"uri": "string",
"first_page_uri": "string",
"next_page_uri": "string",
"previous_page_uri": "string",
"page": 0,
"page_size": 0,
"media": [
{
"account_sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"content_type": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"date_created": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"date_updated": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"fax_sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"sid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"url": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
]
}