Path Parameters
The unique identifier of the territory.
Response
200 - application/json
Successful retrieval of the territory
The response is of type object
.
curl --request GET \
--url https://api.axlehealth.com/api/v2-stable/territories/{id}
{
"territory_id": "b84b4c6a-2e5f-8d1a-9c0b-3e4f5a6b7c8d",
"name": "NY -- Manhattan",
"zip_codes": [
"10001",
"10002",
"10003",
"10004",
"10005",
"10006",
"10007",
"10009"
],
"metadata": {
"region": "Northeast",
"population": "1,628,706",
"area_sqm": "87.5"
}
}
Retrieves the details of a specific territory by its ID.
curl --request GET \
--url https://api.axlehealth.com/api/v2-stable/territories/{id}
{
"territory_id": "b84b4c6a-2e5f-8d1a-9c0b-3e4f5a6b7c8d",
"name": "NY -- Manhattan",
"zip_codes": [
"10001",
"10002",
"10003",
"10004",
"10005",
"10006",
"10007",
"10009"
],
"metadata": {
"region": "Northeast",
"population": "1,628,706",
"area_sqm": "87.5"
}
}
The unique identifier of the territory.
Successful retrieval of the territory
The response is of type object
.