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 [
]
uri string
first_page_uri string
next_page_uri string
previous_page_uri string
page integer
page_size integer
media
object[]
account_sid uuid
The unique identifier for the account that created this conference.
content_type uuid
The content type of the stored media.
date_created uuid
The date and time, in ISO 8601 format, the fax media was created.
date_updated uuid
The date and time, in ISO 8601 format, the fax media was updated.
fax_sid uuid
The unique identifier of the fax that the media is associated with.
sid uuid
The unique identifier for the fax media.
url uuid
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"
}
]
}
Loading...