Price Lists

GET

Authentication: Optional

/price_lists

For a single price list

/price_lists/<id>

Query Params

Field Description Example Value
name Price list Name for filtering Standard
product_id Product ID 5

POST

This API can only be used by admins

Authentication: Required

/price_lists

JSON Example

Values and types can be inferred from the example

{
    "name": "Name",
    "description": "Description",
    "product_id": 7
}

PATCH

This API can only be used by admins

Authentication: Required

/price_lists/<id>

JSON Example

Values and types can be inferred from the example

{
    "name": "Name",
    "description": "Description",
    "product_id": 7
}

DELETE

This API can only be used by admins

Authentication: Required

/price_lists/<id>