GetPriceList
Retrieves specific price list data with given id of given channel
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
idintegerRequiredExample:
Unique identifier of the resource
1
Responses
200
OK
application/json
401
Unauthorized Access
application/json
404
The given resource or object was not found or does not exist.
application/json
500
Server Error
get
GET /api/v1/{channel_id}/price_lists/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T08:46:54.661Z",
"modified_date": "2025-06-27T08:46:54.661Z"
}
Was this helpful?