Get a list of supported countries for sending faxes
Operation
supportedCountries
Returns a list of supported countries for sending faxes on Phaxio. This operation requires no authentication and can be used without passing an API key.
Request Parameters
None
Response
A JSON object with success
, message
, and data
attributes.
The data attribute contains a hash, where the key contains the name of the country, and the value is a hash of attributes for the country (currently only pricing information).
Sample Call
curl -X POST https://api.phaxio.com/v1/supportedCountries
Sample Response
{
"success": true,
"message": "Data contains supported countries.",
"data": [
"United States": {
"price_per_page": 7
},
"Canada": {
"price_per_page": 7
},
"United Kingdom": {
"price_per_page": 10
},
"Japan": {
"price_per_page": 10
},
"France": {
"price_per_page": 10
},
"Germany": {
"price_per_page": 10
},
"Argentina": {
"price_per_page": 10
},
"Brazil": {
"price_per_page": 10
},
"Israel": {
"price_per_page": 10
},
"India": {
"price_per_page": 10
},
"Portugal": {
"price_per_page": 10
},
"Italy": {
"price_per_page": 10
},
"Hong Kong": {
"price_per_page": 10
},
"Puerto Rico": {
"price_per_page": 10
},
"Australia": {
"price_per_page": 10
}
]
}