Price Lists
Retrieve the details of a specific price list by ID.
Unique identifier of the resource
1
GET /api/v1/price_list/{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:54:33.160Z",
"modified_date": "2025-06-27T08:54:33.160Z"
}
Update the details of a specific price list by ID.
Unique identifier of the resource
1
Price List ID
Name of the price list.
Standard Price List
Unique code for the price list. Can be null or blank.
shop_price_list
Currency type for the price list.
try
Possible values: Indicates whether the price list is auto-synchronized with an external integration.
false
Example: true
Creation Date of the Price List
Last Modification Date of the Price List
PUT /api/v1/price_list/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 184
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T08:54:33.160Z",
"modified_date": "2025-06-27T08:54:33.160Z"
}
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T08:54:33.160Z",
"modified_date": "2025-06-27T08:54:33.160Z"
}
Delete a specific price list by ID.
Unique identifier of the resource
1
DELETE /api/v1/price_list/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Retrieve a list of price lists with optional filtering.
Filters by name
Filter by code.
Filters by exact code
Filter by auto-sync status.
true
Filter by creation date using supported lookup expressions (e.g., gt
, gte
, lt
, lte
, date__gt
, etc.).
created_date__gt=2024-01-01T00:00:00Z
GET /api/v1/price_list/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
A list of price lists.
[
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T08:54:33.160Z",
"modified_date": "2025-06-27T08:54:33.160Z"
}
]
Create a new price list with the specified data.
Price List ID
Name of the price list.
Standard Price List
Unique code for the price list. Can be null or blank.
shop_price_list
Currency type for the price list.
try
Possible values: Indicates whether the price list is auto-synchronized with an external integration.
false
Example: true
Creation Date of the Price List
Last Modification Date of the Price List
POST /api/v1/price_list/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 184
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T08:54:33.160Z",
"modified_date": "2025-06-27T08:54:33.160Z"
}
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T08:54:33.160Z",
"modified_date": "2025-06-27T08:54:33.160Z"
}
Was this helpful?