Townships
Retrieve a specific Township by ID
Unique identifier of the resource
1
Township 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-08-29T20:08:09.608Z",
"modified_date": "2025-08-29T20:08:09.608Z"
}
Update a specific Township by ID
Unique identifier of the resource
1
Primary key of the township
Township Name
Esenler
Is it active? (True/False)
true
Related City ID
Postcode
34000
Township 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-08-29T20:08:09.608Z"
}
No content
Delete a specific Township by ID
Unique identifier of the resource
1
Township deleted successfully
No content
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
1
Primary key of the township
Township Name
Esenler
Is it active? (True/False)
true
Related City ID
Postcode
34000
Township 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-08-29T20:08:09.608Z"
}
No content
Retrieve a specific Township by ID with details
Unique identifier of the resource
1
Township 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-08-29T20:08:09.608Z",
"modified_date": "2025-08-29T20:08:09.608Z"
}
List Townships
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
Filters 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
1
Filter 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-08-29T20:08:09.608Z",
"modified_date": "2025-08-29T20:08:09.608Z"
}
]
}
Create Township
Primary key of the township
Township Name
Esenler
Is it active? (True/False)
true
Related City ID
Postcode
34000
Township 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-08-29T20:08:09.608Z"
}
{
"pk": 1,
"name": "Esenler",
"is_active": true,
"city": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"postcode": "34000",
"created_date": "2025-08-29T20:08:09.608Z",
"modified_date": "2025-08-29T20:08:09.608Z"
}
List Townships with details
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
Filters 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
1
Filter 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-08-29T20:08:09.608Z",
"modified_date": "2025-08-29T20:08:09.608Z"
}
]
}
Was this helpful?