Price Lists
Retrieve the details of a specific price list by ID.
Unique identifier of the resource
1
Price 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-08-30T00:33:21.018Z",
"modified_date": "2025-08-30T00:33:21.018Z"
}
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
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-08-30T00:33:21.018Z",
"modified_date": "2025-08-30T00:33:21.018Z"
}
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-08-30T00:33:21.018Z",
"modified_date": "2025-08-30T00:33:21.018Z"
}
Delete a specific price list by ID.
Unique identifier of the resource
1
No content
No 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.
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
A 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-08-30T00:33:21.018Z",
"modified_date": "2025-08-30T00:33:21.018Z"
}
]
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
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-08-30T00:33:21.018Z",
"modified_date": "2025-08-30T00:33:21.018Z"
}
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-08-30T00:33:21.018Z",
"modified_date": "2025-08-30T00:33:21.018Z"
}
Was this helpful?