A dictionary with fields
Field | Type | Description |
---|---|---|
product_id | Int | Optional. Only return VAT changes for the given product |
product_price_id | Int | Optional. Only return VAT changes for the given product price |
product_option_id | Int | Optional. Only return VAT changes for the given product option |
before_id | Int | Optional. Only return VAT changes created before (not including) the change with the given id. Used for pagination. |
after_id | Int | Optional. Only return VAT changes created after (not including) the change with the given id. Used for pagination. |
sort | String | Optional. Sort the results in ascending (default) or descending ordered by id. Default is ascending. |
limit | Int | Optional. Limit the amount of VAT changes returned per page. Defaults to 50. Maximum value is 1000. |
{
"product_id": 19,
"product_price_id": 18,
"product_option_id": 18,
"before_id": 10,
"after_id": 18,
"sort": "ascending",
"limit": 12
}