Price Lists

Retrieve a price list

get

Retrieve the details of a specific price list by ID.

Authorizations
AuthorizationstringRequired
Path parameters
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
chevron-right
200

Price list retrieved successfully.

application/json
get
/api/v1/price_list/{id}/

Update a price list

put

Update the details of a specific price list by ID.

Authorizations
AuthorizationstringRequired
Path parameters
idintegerRequired

Unique identifier of the resource

Example: 1
Body
pkinteger · int64Optional

Price List ID

namestring · max: 64Optional

Name of the price list.

Example: Standard Price List
codestring | nullableOptional

Unique code for the price list. Can be null or blank.

Example: shop_price_list
currencystring · enumOptional

Currency type for the price list.

Example: tryPossible values:
is_auto_syncbooleanOptional

Indicates whether the price list is auto-synchronized with an external integration.

Default: falseExample: true
created_datestring · date-timeOptional

Creation Date of the Price List

modified_datestring · date-timeOptional

Last Modification Date of the Price List

Responses
chevron-right
200

Price list updated successfully.

application/json
put
/api/v1/price_list/{id}/

Delete a price list

delete

Delete a specific price list by ID.

Authorizations
AuthorizationstringRequired
Path parameters
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
delete
/api/v1/price_list/{id}/

No content

List price lists

get

Retrieve a list of price lists with optional filtering.

Authorizations
AuthorizationstringRequired
Query parameters
namestringOptional

Filter by name.

codestringOptional

Filter by code.

code__exactstringOptional

Filters by exact code

is_auto_syncbooleanOptional

Filter by auto-sync status.

Example: true
created_datestring · date-timeOptional

Filter by creation date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).

Example: created_date__gt=2024-01-01T00:00:00Z
Responses
chevron-right
200

A list of price lists.

application/json
get
/api/v1/price_list/
200

A list of price lists.

Create a price list

post

Create a new price list with the specified data.

Authorizations
AuthorizationstringRequired
Body
pkinteger · int64Optional

Price List ID

namestring · max: 64Optional

Name of the price list.

Example: Standard Price List
codestring | nullableOptional

Unique code for the price list. Can be null or blank.

Example: shop_price_list
currencystring · enumOptional

Currency type for the price list.

Example: tryPossible values:
is_auto_syncbooleanOptional

Indicates whether the price list is auto-synchronized with an external integration.

Default: falseExample: true
created_datestring · date-timeOptional

Creation Date of the Price List

modified_datestring · date-timeOptional

Last Modification Date of the Price List

Responses
post
/api/v1/price_list/

Last updated

Was this helpful?