Returns a collection with a key, ID, and link for each order entry price schedule.
OK
Bad Request
{- "ia::result": [
- {
- "key": "1",
- "id": "M100",
- "href": "/objects/order-entry/price-schedule/1"
}, - {
- "key": "2",
- "id": "10 Percent",
- "href": "/objects/order-entry/price-schedule/2"
}, - {
- "key": "3",
- "id": "5 Percent",
- "href": "/objects/order-entry/price-schedule/3"
}
], - "ia::meta": {
- "pageSize": 100,
- "start": 1,
- "totalCount": 3
}
}
Creates a new order entry price schedule.
id required | string <= 10 characters Unique identifier for the price schedule. Example: "Price23" | ||||
description | string Description of the price schedule. Example: "Price schedule code description" | ||||
object Associated price list. | |||||
| |||||
discountPercent | string <decimal-precision-2> Discount percentage for all items in the associated price list. A positive value decreases prices; a negative value increases prices. Example: "10" | ||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" |
Created
Bad Request
{- "id": "Acme Price",
- "description": "Acme Discount Schedule",
- "discountPercent": "10"
}
{- "ia::result": {
- "key": "9",
- "id": "Acme Price",
- "href": "/objects/order-entry/price-schedule/9"
}, - "ia::meta": {
- "totalCount": 1,
- "totalError": 0,
- "totalSuccess": 1
}
}
Returns detailed information for a specified order entry price schedule.
key required | string System-assigned unique key for the price schedule. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "9",
- "id": "Acme Price",
- "href": "/objects/order-entry/price-schedule/9",
- "description": "Acme Discount Schedule",
- "discountPercent": "10.00",
- "entity": {
- "id": null,
- "key": null,
- "name": null
}, - "priceList": {
- "id": null,
- "key": null
}, - "status": "active",
- "audit": {
- "createdBy": "1",
- "createdByUser": {
- "href": "/objects/company-config/user/1",
- "id": "Admin",
- "key": "1"
}, - "createdDateTime": "2025-05-07T06:49:22Z",
- "modifiedBy": "1",
- "modifiedByUser": {
- "href": "/objects/company-config/user/1",
- "id": "Admin",
- "key": "1"
}, - "modifiedDateTime": "2025-05-07T06:49:22Z"
}
}, - "ia::meta": {
- "totalCount": 1,
- "totalError": 0,
- "totalSuccess": 1
}
}
Updates an existing order entry price schedule by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned unique key for the price schedule. Example: 99 |
description | string Description of the price schedule. Example: "Price schedule code description" | ||||
object Associated price list. | |||||
| |||||
discountPercent | string <decimal-precision-2> Discount percentage for all items in the associated price list. A positive value decreases prices; a negative value increases prices. Example: "10" | ||||
status | string Default: "active" Object status. Active objects are fully functional. Inactive objects are essentially hidden and cannot be used or referenced. Example: "active" |
OK
Bad Request
{- "discountPercent": "15"
}
{- "ia::result": {
- "key": "9",
- "id": "Acme Price",
- "href": "/objects/order-entry/price-schedule/9"
}, - "ia::meta": {
- "totalCount": 1,
- "totalError": 0,
- "totalSuccess": 1
}
}
Deletes an order entry price schedule.
key required | string System-assigned unique key for the price schedule. Example: 99 |
No Content
Bad Request
{- "ia::result": {
- "ia::error": {
- "code": "invalidRequest",
- "message": "A POST request requires a payload",
- "errorId": "REST-1028",
- "additionalInfo": {
- "messageId": "IA.REQUEST_REQUIRES_A_PAYLOAD",
- "placeholders": {
- "OPERATION": "POST"
}, - "propertySet": { }
}, - "supportId": "Kxi78%7EZuyXBDEGVHD2UmO1phYXDQAAAAo"
}
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 0,
- "totalError": 1
}
}