SalesChannelCities
Retrieve a specific Sales Channel City by ID
The channel ID of the resource.
5
Unique identifier of the resource
1
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-06-27T08:46:55.201Z",
"modified_date": "2025-06-27T08:46:55.201Z",
"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.
5
Unique identifier of the resource
1
City ID
City Name
Istanbul
Creation Date
Last Modification Date
Is it active? (True/False)
true
Related Country ID
Priority
1
Postcode
34000
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.
5
Unique identifier of the resource
1
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.
5
Unique identifier of the resource
1
City ID
City Name
Istanbul
Creation Date
Last Modification Date
Is it active? (True/False)
true
Related Country ID
Priority
1
Postcode
34000
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.
5
Unique identifier of the resource
1
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-06-27T08:46:55.201Z",
"modified_date": "2025-06-27T08:46:55.201Z",
"is_active": true,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"priority": 1,
"postcode": "34000"
}
List Sales Channel Cities
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
Filters 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.
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-06-27T08:46:55.201Z",
"modified_date": "2025-06-27T08:46:55.201Z",
"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.
5
City ID
City Name
Istanbul
Creation Date
Last Modification Date
Is it active? (True/False)
true
Related Country ID
Priority
1
Postcode
34000
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-06-27T08:46:55.201Z",
"modified_date": "2025-06-27T08:46:55.201Z",
"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.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
Filters 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.
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-06-27T08:46:55.201Z",
"modified_date": "2025-06-27T08:46:55.201Z",
"is_active": true,
"country": 1,
"translations": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"priority": 1,
"postcode": "34000"
}
]
}
Was this helpful?