Operations related to subscriptions.
Download OpenAPI description
Overview
Languages
Servers
Production server
https://api.tellisim.com/
- Production serverhttps://api.tellisim.com/v3/coverage-profiles
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.tellisim.com/v3/coverage-profiles?region_code=US&label=Green&key=YOUR_API_KEY_HERE'Successful response containing coverage profiles
The unique identifier for the coverage profile
Example: "24648a7f-8281-4af7-8fc0-19b2371b2d1d"
The name of the region for which the coverage is applicable
Example: "United States"
The ISO code of the region for which the coverage is applicable
Example: "US"
Response
application/json
{ "error": false, "data": [ { … } ] }
- Production serverhttps://api.tellisim.com/v3/coverage-profiles/{coverageId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.tellisim.com/v3/coverage-profiles/{coverageId}?key=YOUR_API_KEY_HERE'Successful response containing coverage profile details
The unique identifier for the coverage profile
Example: "24648a7f-8281-4af7-8fc0-19b2371b2d1d"
The name of the region for which the coverage is applicable
Example: "United States"
The ISO code of the region for which the coverage is applicable
Example: "US"
Response
application/json
{ "error": false, "data": { "coverage_id": "24648a7f-8281-4af7-8fc0-19b2371b2d1d", "label": "Green", "region_name": "United States", "region_code": "US", "countries": [ … ] } }
Request
Creates a custom region coverage profile using a list of ISO 2-letter country codes.
Validation checks:
The system performs the following validations before creating the profile:
- Duplicate name check: If a region with the same name already exists for this organization, returns
400 Bad Request - Duplicate coverage check: If a coverage profile with the exact same set of countries already exists, returns
409 Conflictwith the existing profile details
Note: Coverage profiles are immutable and cannot be deleted. You can only create new profiles.
Security
ApiKeyAuth
- Production serverhttps://api.tellisim.com/v3/coverage-profiles/custom-region
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://api.tellisim.com/v3/coverage-profiles/custom-region?key=YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"region_name": "Usa and Mexico Regional Plan",
"label": "Green",
"iso2_list": [
"US",
"MX"
]
}'Response
application/json
{ "error": false, "data": { "coverage_id": "85089a51-801c-4737-bd8b-f542705712bf", "region_code": "R33BHT", "region_name": "Usa and Mexico Regional Plan", "iso2_list": [ … ] } }
