Available Operations
Authentication
| Key | Description | Where | Example |
|---|---|---|---|
| Authorization | Base64 encoded API key and secret joined by a colon. | Headers | Basic <base64> |
Query Parameters
country
string
A two letter country code. For example, CA.
page
integer
The page number of the results to retrieve.
page_size
integer
The number of results to retrieve per page.
page_size
string
example
100The number of results per page.
page
string
example
1The page number of the results.
total_items
string
example
243The total number of items.
total_pages
string
example
3The total number of pages.
_embedded
object
countries
array
A list of countries.
country_name
string
example
CanadaCountry name.
dialing_prefix
string
example
1The dialling prefix.
dest_network_type
string
example
ALLThe type of network.
group_internal_start
string
example
1sTBD
rate_increment
string
example
60The rate increment.
currency
string
example
USDThe currency that your account is being billed in.
price
string
example
0.1The price.
_links
object
self
object
href
string
example
https://api.nexmo.com/account/pricing/sms-outbound?page=1&page_size=100The URL to retrieve the current page.
first
object
href
string
example
https://api.nexmo.com/account/pricing/sms-outbound?page=1&page_size=100The URL to retrieve the first page.
last
object
href
string
example
https://api.nexmo.com/account/pricing/sms-outbound?page=3&page_size=100The URL to retrieve the last page.
next
object
href
string
example
https://api.nexmo.com/account/pricing/sms-outbound?page=2&page_size=100The URL to retrieve the next page.
prev
object
href
string
example
https://api.nexmo.com/account/pricing/sms-outbound?page=1&page_size=100The URL to retrieve the previous page.
Example Response
{
"page_size": "100",
"page": "1",
"total_items": "243",
"total_pages": "3",
"_embedded": {
"countries": [
{
"country_name": "Canada",
"dialing_prefix": "1",
"dest_network_type": "ALL",
"group_internal_start": "1s",
"rate_increment": "60",
"currency": "USD",
"price": "0.1"
}
]
},
"_links": {
"self": {
"href": "https://api.nexmo.com/account/pricing/sms-outbound?page=1&page_size=100"
},
"first": {
"href": "https://api.nexmo.com/account/pricing/sms-outbound?page=1&page_size=100"
},
"last": {
"href": "https://api.nexmo.com/account/pricing/sms-outbound?page=3&page_size=100"
},
"next": {
"href": "https://api.nexmo.com/account/pricing/sms-outbound?page=2&page_size=100"
},
"prev": {
"href": "https://api.nexmo.com/account/pricing/sms-outbound?page=1&page_size=100"
}
}
}