Billing price list entry lines define pricing details for an item specified in a billing price list entry. Details include the starting date for a price, the flat amount, and usage rates.
Returns up to 100 object references from the collection with a key, ID, and link for each entry line. This operation is mostly for use in testing; use query to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "304",
- "id": "304",
- "href": "/objects/contracts/billing-price-list-entry-line/304"
}, - {
- "key": "301",
- "id": "301",
- "href": "/objects/contracts/billing-price-list-entry-line/301"
}, - {
- "key": "302",
- "id": "302",
- "href": "/objects/contracts/billing-price-list-entry-line/302"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified billing price list entry line.
key required | string System-assigned unique key for the billing price list entry line. Example: 10295 |
OK
Bad Request
{- "ia::result": {
- "key": "572",
- "id": "572",
- "billingPriceListEntry": {
- "key": "525",
- "id": "525",
- "href": "/objects/billing-price-list-entry/525"
}, - "startDate": "2024-01-01",
- "flatAmount": "0",
- "variableUnitRate": "0",
- "includedUnits": "9",
- "memo": "Annual price increase",
- "audit": {
- "createdDateTime": "2023-06-15T06:01:21Z",
- "modifiedDateTime": "2023-06-15T06:01:21Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "tiers": [
- {
- "key": "121",
- "id": "121",
- "billingPriceListEntryLine": {
- "key": "572",
- "id": "572",
- "href": "/objects/contracts/billing-price-list-entry-line/572"
}, - "beginQuantity": "0",
- "tierRate": "850",
- "audit": {
- "createdDateTime": "2023-06-15T06:01:21Z",
- "modifiedDateTime": "2023-06-15T06:01:21Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "href": "/objects/contracts/billing-price-list-entry-line-tier/121"
}
], - "href": "/objects/contracts/billing-price-list-entry-line/572"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing billing price list entry line by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned unique key for the billing price list entry line. Example: 10295 |
startDate | string <date> The date on which the price becomes effective. Example: "2024-01-01" | ||||||
flatAmount | string <decimal-precision-2> Flat amount.
Example: "999.99" | ||||||
variableUnitRate | string or null The amount to charge for each quantity range beyond the included units. Only applicable if Example: "11.99" | ||||||
includedUnits | string or null The item quantity included in the Enter
Example: "2000" | ||||||
memo | string or null Notes. Example: "note to save" | ||||||
Array of objects Pricing tiers. Only applicable if | |||||||
Array
|
OK
Bad Request
{- "startDate": "2024-01-01",
- "flatAmount": "0",
- "variableUnitRate": "1",
- "includedUnits": "9",
- "memo": null,
- "tiers": [
- {
- "key": "121",
- "beginQuantity": "0",
- "tierRate": "850"
}
]
}
{- "ia::result": {
- "key": "572",
- "id": "572",
- "href": "/objects/contracts/billing-price-list-entry-line/572"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Deletes a billing price list entry line.
key required | string System-assigned unique key for the billing price list entry line. Example: 10295 |
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
}
}
Use the query service to find billing price list entry lines that meet certain criteria and to specify the properties that are returned.
OK
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
}
}