Townships
Retrieve a specific Township by ID
Unique identifier of the resource
1Township retrieved successfully
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/townships/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "Esenler",
"is_active": true,
"city": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"postcode": "34000",
"created_date": "2025-12-01T11:23:24.063Z",
"modified_date": "2025-12-01T11:23:24.063Z"
}Update a specific Township by ID
Unique identifier of the resource
1Primary key of the township
Township Name
EsenlerIs it active? (True/False)
trueRelated City ID
Postcode
34000Township updated
No content
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
PUT /api/v1/townships/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 113
{
"pk": 1,
"name": "Esenler",
"is_active": true,
"city": 1,
"postcode": "34000",
"modified_date": "2025-12-01T11:23:24.063Z"
}No content
Delete a specific Township by ID
Unique identifier of the resource
1Township deleted successfully
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
DELETE /api/v1/townships/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Partial update a specific Township by ID
Unique identifier of the resource
1Primary key of the township
Township Name
EsenlerIs it active? (True/False)
trueRelated City ID
Postcode
34000Township updated
No content
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
PATCH /api/v1/townships/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 113
{
"pk": 1,
"name": "Esenler",
"is_active": true,
"city": 1,
"postcode": "34000",
"modified_date": "2025-12-01T11:23:24.063Z"
}No content
Retrieve a specific Township by ID with details
Unique identifier of the resource
1Township retrieved successfully with details
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/townships/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"city": 1,
"pk": 1,
"name": "Esenler",
"is_active": true,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"postcode": "34000",
"created_date": "2025-12-01T11:23:24.063Z",
"modified_date": "2025-12-01T11:23:24.063Z"
}List Townships
Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Filters by exact name
Filters case insensitive by exact name
Filter by integration mapping object's integration type
Filter by integration mapping object's code
Activate id to hyperlink the response data.
Filter by priority
1Filter by City ID
Filter by Postcode
Filter by multiple primary key values (comma-separated list of integers)
OK
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/townships/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"created_date": "2025-12-01T11:23:24.063Z",
"modified_date": "2025-12-01T11:23:24.063Z"
}
]
}Create Township
Primary key of the township
Township Name
EsenlerIs it active? (True/False)
trueRelated City ID
Postcode
34000Township Created
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
POST /api/v1/townships/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 113
{
"pk": 1,
"name": "Esenler",
"is_active": true,
"city": 1,
"postcode": "34000",
"modified_date": "2025-12-01T11:23:24.063Z"
}{
"pk": 1,
"name": "Esenler",
"is_active": true,
"city": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"postcode": "34000",
"created_date": "2025-12-01T11:23:24.063Z",
"modified_date": "2025-12-01T11:23:24.063Z"
}List Townships with details
Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Filters by exact name
Filters case insensitive by exact name
Filter by integration mapping object's integration type
Filter by integration mapping object's code
Activate id to hyperlink the response data.
Filter by priority
1Filter by City ID
Filter by Postcode
Filter by multiple primary key values (comma-separated list of integers)
OK
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/townships/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"name": "Esenler",
"is_active": true,
"city": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"postcode": "34000",
"created_date": "2025-12-01T11:23:24.063Z",
"modified_date": "2025-12-01T11:23:24.063Z"
}
]
}Was this helpful?

