Cities
Retrieves data about cities, including their names, creation and modification dates, country code, and whether they are active or not.
Query parameter country
used to filter results based on specific conditions.
Query parameter created_date
used to filter results based on specific conditions.
Query parameter id
used to filter results based on specific conditions.
Filters records where id
is greater than the given value.
Filters records where id
is greater than or equal to the given value.
Filters records where id
is less than the given value.
Filters records where id
is less than or equal to the given value.
Query parameter is_active
used to filter results based on specific conditions.
Limits the number of results returned in the response.
Query parameter modified_date
used to filter results based on specific conditions.
Filters records where modified_date
is greater than the given value.
Filters records where modified_date
is greater than or equal to the given value.
Filters records where modified_date
is less than the given value.
Filters records where modified_date
is less than or equal to the given value.
Query parameter name
used to filter results based on specific conditions.
Query parameter page
used to filter results based on specific conditions.
Query parameter postcode
used to filter results based on specific conditions.
Query parameter priority
used to filter results based on specific conditions.
Query parameter sort
used to filter results based on specific conditions.
Query parameter translations
used to filter results based on specific conditions.
GET /api/v1/remote/1/data-warehouse/cities/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response for status code 200.
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"country": 1,
"created_date": "2025-06-27T09:25:34.590Z",
"id": 1,
"is_active": true,
"modified_date": "2025-06-27T09:25:34.590Z",
"name": "text",
"postcode": "text",
"priority": 1,
"translations": null
}
]
}
Retrieves data about cities, including their names, creation and modification dates, country code, and whether they are active or not. This endpoint retrieves a specific record by its unique identifier.
A unique integer value identifying this city.
GET /api/v1/remote/1/data-warehouse/cities/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"country": 1,
"created_date": "2025-06-27T09:25:34.590Z",
"id": 1,
"is_active": true,
"modified_date": "2025-06-27T09:25:34.590Z",
"name": "text",
"postcode": "text",
"priority": 1,
"translations": null
}
Was this helpful?