Price Lists
Retrieve the details of a specific price list by ID.
Unique identifier of the resource
1Price list retrieved successfully.
Forbidden
The given resource or object was not found or does not exist.
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-12-01T10:06:49.737Z",
"modified_date": "2025-12-01T10:06:49.737Z"
}Update the details of a specific price list by ID.
Unique identifier of the resource
1Price List ID
Name of the price list.
Standard Price ListUnique code for the price list. Can be null or blank.
shop_price_listCurrency type for the price list.
tryPossible values: Indicates whether the price list is auto-synchronized with an external integration.
falseExample: trueCreation Date of the Price List
Last Modification Date of the Price List
Price list updated successfully.
Forbidden
The given resource or object was not found or does not exist.
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-12-01T10:06:49.737Z",
"modified_date": "2025-12-01T10:06:49.737Z"
}{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-12-01T10:06:49.737Z",
"modified_date": "2025-12-01T10:06:49.737Z"
}Delete a specific price list by ID.
Unique identifier of the resource
1No content
Forbidden
The given resource or object was not found or does not exist.
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.
trueFilter by creation date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).
created_date__gt=2024-01-01T00:00:00ZA list of price lists.
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-12-01T10:06:49.737Z",
"modified_date": "2025-12-01T10:06:49.737Z"
}
]Create a new price list with the specified data.
Price List ID
Name of the price list.
Standard Price ListUnique code for the price list. Can be null or blank.
shop_price_listCurrency type for the price list.
tryPossible values: Indicates whether the price list is auto-synchronized with an external integration.
falseExample: trueCreation Date of the Price List
Last Modification Date of the Price List
Price list created successfully.
Required field(s) are missing, data is invalid, or the action is not allowed.
Forbidden
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-12-01T10:06:49.737Z",
"modified_date": "2025-12-01T10:06:49.737Z"
}{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-12-01T10:06:49.737Z",
"modified_date": "2025-12-01T10:06:49.737Z"
}Was this helpful?

