Create a price level
Creates a new price level.
post/quickbooks-desktop/price-levels
Headers
Conductor-End-User-Idstring required
The ID of the End-User to receive this request.
Example:end_usr_1234567abcdefg
The ID of the End-User to receive this request.
Request body
Example request
{
"name": "Wholesale 20% Discount",
"isActive": true,
"fixedPercentage": "-10.0",
"perItemPriceLevels": [
{
"itemId": "80000001-1234567890",
"customPrice": "19.99",
"customPricePercent": "15.0",
"adjustPercentage": "-10.0",
"adjustRelativeTo": "standard_price"
}
],
"currencyId": "80000001-1234567890"
}Response
Returns the newly created price level.
Example response
{
"id": "80000001-1234567890",
"objectType": "qbd_price_level",
"createdAt": "2025-01-01T12:34:56+00:00",
"updatedAt": "2025-02-01T12:34:56+00:00",
"revisionNumber": "1721172183",
"name": "Wholesale 20% Discount",
"isActive": true,
"priceLevelType": "fixed_percentage",
"fixedPercentage": "-10.0",
"perItemPriceLevels": [
{
"item": {
"id": "80000001-1234567890",
"fullName": "Widget A"
},
"customPrice": "19.99",
"customPricePercent": "15.0"
}
],
"currency": {
"id": "80000001-1234567890",
"fullName": "USD"
}
}