SalesChannelCities
Retrieve a specific Sales Channel City by ID
The channel ID of the resource.
5Unique identifier of the resource
1Sales Channel City retrieved successfully
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/channel/{channel_id}/cities/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"id": 1,
"name": "Istanbul",
"created_date": "2025-11-30T09:06:02.837Z",
"modified_date": "2025-11-30T09:06:02.837Z",
"is_active": true,
"country": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"priority": 1,
"postcode": "34000"
}Update a specific Sales Channel City by ID
The channel ID of the resource.
5Unique identifier of the resource
1City ID
City Name
IstanbulCreation Date
Last Modification Date
Is it active? (True/False)
trueRelated Country ID
Priority
1Postcode
34000Sales Channel City updated
No content
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
PUT /api/v1/channel/{channel_id}/cities/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 80
{
"name": "Istanbul",
"is_active": true,
"country": 1,
"priority": 1,
"postcode": "34000"
}No content
Delete Sales Channel City for a specific channel.
The channel ID of the resource.
5Unique identifier of the resource
1Sales Channel City deleted successfully
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
DELETE /api/v1/channel/{channel_id}/cities/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Partial update a specific Sales Channel City by ID
The channel ID of the resource.
5Unique identifier of the resource
1City ID
City Name
IstanbulCreation Date
Last Modification Date
Is it active? (True/False)
trueRelated Country ID
Priority
1Postcode
34000Sales Channel City updated
No content
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
PATCH /api/v1/channel/{channel_id}/cities/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 80
{
"name": "Istanbul",
"is_active": true,
"country": 1,
"priority": 1,
"postcode": "34000"
}No content
Retrieve a specific Sales Channel Cities by ID with details
The channel ID of the resource.
5Unique identifier of the resource
1Sales Channel City retrieved successfully with details
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/channel/{channel_id}/cities/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"country": 1,
"id": 1,
"name": "Istanbul",
"created_date": "2025-11-30T09:06:02.837Z",
"modified_date": "2025-11-30T09:06:02.837Z",
"is_active": true,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"priority": 1,
"postcode": "34000"
}List Sales Channel Cities
The channel ID of the resource.
5Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Filters 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.
OK
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/channel/{channel_id}/cities/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"name": "Istanbul",
"created_date": "2025-11-30T09:06:02.837Z",
"modified_date": "2025-11-30T09:06:02.837Z",
"is_active": true,
"country": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"priority": 1,
"postcode": "34000"
}
]
}Create Sales Channel City for a specific channel.
The channel ID of the resource.
5City ID
City Name
IstanbulCreation Date
Last Modification Date
Is it active? (True/False)
trueRelated Country ID
Priority
1Postcode
34000City Created
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
POST /api/v1/channel/{channel_id}/cities/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 80
{
"name": "Istanbul",
"is_active": true,
"country": 1,
"priority": 1,
"postcode": "34000"
}{
"id": 1,
"name": "Istanbul",
"created_date": "2025-11-30T09:06:02.837Z",
"modified_date": "2025-11-30T09:06:02.837Z",
"is_active": true,
"country": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"priority": 1,
"postcode": "34000"
}List Sales Channel Cities with details
The channel ID of the resource.
5Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Filters 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.
OK
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/channel/{channel_id}/cities/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"name": "Istanbul",
"created_date": "2025-11-30T09:06:02.837Z",
"modified_date": "2025-11-30T09:06:02.837Z",
"is_active": true,
"country": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"priority": 1,
"postcode": "34000"
}
]
}Was this helpful?

