Faxes
List all Faxes
List all faxes.
Permissions
The API token used to authenticate must have the following scope(s) enabled to make a successful request: Fax.
Learn more about API scopes.
get/Accounts/{AccountSid}/Faxes
Path parameters
AccountSidstring uuid required
Universal Unique Identifier.
The Project ID that uniquely identifies the Account.
Query parameters
Pageinteger
The page index to retrieve. Zero-indexed.
PageSizeinteger
The number of results per page. Default is 50, maximum is 1000.
PageTokenstring
Token for cursor-based pagination. Required when Page > 0.
DateCreatedAfterstring
The date, in ISO 8601 format, after which the fax was sent.
DateCreatedOnOrBeforestring
The date, in ISO 8601 format, on or before which the fax was sent.
Fromstring
The phone number, in E.164 format, the fax was sent from.
Tostring
The phone number, in E.164 format, the fax was sent to.
Response
The request has succeeded.
Example response
{
"uri": "/fax/v1/Faxes?Page=0&PageSize=50",
"first_page_uri": "/fax/v1/Faxes?PageSize=50",
"next_page_uri": "/fax/v1/Faxes?Page=1&PageSize=50&PageToken=PAb3877c40da604998",
"page_size": 50,
"faxes": [
{
"account_sid": "b3877c40-da60-4998-90ad-b792e98472ac",
"api_version": "v1",
"date_created": "2018-11-26T20:00:00Z",
"date_updated": "2018-11-27T20:00:00Z",
"from": "+13103383454",
"media_url": "https://example.com/fax.pdf",
"media_sid": "b3877c40-da60-4998-90ad-b792e98472me",
"num_pages": "3",
"price": "-0.005",
"price_unit": "USD",
"sid": "b3877c40-da60-4998-90ad-b792e98472fx",
"to": "+13104456789",
"duration": 5000,
"links": {
"media": "/fax/v1/Faxes/b3877c40-da60-4998-90ad-b792e98472fx/Media"
},
"url": "/fax/v1/Faxes/b3877c40-da60-4998-90ad-b792e98472fx"
}
]
}