All URIs are relative to https://rest.clicksend.com/v3
| Method | HTTP request | Description |
|---|---|---|
| countries_get | GET /countries | Get all country codes |
str countries_get()
Get all country codes
Get all countries
from __future__ import print_function
import time
import clicksend_client
from clicksend_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = clicksend_client.CountriesApi()
try:
# Get all country codes
api_response = api_instance.countries_get()
pprint(api_response)
except ApiException as e:
print("Exception when calling CountriesApi->countries_get: %s\n" % e)This endpoint does not need any parameter.
str
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]