A contract billing schedule is a header containing multiple schedule lines. It is referenced by a contract line.
Returns up to 100 object references from the collection with a key, ID, and link for each contract billing schedule. 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": "84",
- "id": "RT-00001",
- "href": "/objects/contracts/billing-schedule/84"
}, - {
- "key": "85",
- "id": "RT-00002",
- "href": "/objects/contracts/billing-schedule/85"
}, - {
- "key": "60",
- "id": "RT-00003",
- "href": "/objects/contracts/billing-schedule/60"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified contract billing schedule.
key required | string System-assigned key for a contract billing schedule. Example: 1843 |
OK
Bad Request
{- "ia::result": {
- "key": "1576",
- "id": "1576",
- "contract": {
- "key": "143",
- "id": "Committed_Quantity_Billing",
- "href": "/objects/contracts/contract/143"
}, - "contractLine": {
- "id": "387",
- "key": "387",
- "href": "/objects/contracts/contract-line/387"
}, - "status": "inProgress",
- "cancellationDate": null,
- "audit": {
- "createdDateTime": "2024-02-01T06:14:00Z",
- "modifiedDateTime": "2024-02-01T06:14:00Z",
- "createdBy": "1",
- "modifiedBy": "1"
}, - "estimateRevaluationDate": null,
- "lines": [
- {
- "key": "14421",
- "id": "14421",
- "contractBillingSchedule": {
- "id": "1576",
- "key": "1576",
- "href": "/objects/contracts/billing-schedule/1576"
}, - "scheduledOperationKey": null,
- "scheduledAmount": "200000.00",
- "scheduledBaseAmount": "200000.00",
- "actualBaseAmount": null,
- "scheduledExchangeRate": "1.000000000000",
- "actualExchangeRate": null,
- "scheduledBillingDate": "2024-01-01",
- "actualBillingDate": null,
- "billed": false,
- "isHistorical": false,
- "status": "open",
- "computationMemo": null,
- "approvedHours": null,
- "sourceHours": null,
- "linkedBillingScheduleLine": {
- "id": null,
- "key": null
}, - "documentId": null,
- "audit": {
- "createdDateTime": "2024-02-01T06:14:00Z",
- "modifiedDateTime": "2024-03-28T04:14:44Z",
- "createdBy": "1",
- "modifiedBy": null
}, - "contractUsage": {
- "id": null,
- "key": null
}, - "servicePeriodStartDate": "2024-01-01",
- "servicePeriodEndDate": "2024-01-31",
- "href": "/objects/contracts/billing-schedule-line/14421"
}
], - "href": "/objects/contracts/billing-schedule/1576"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}
Updates an existing contract billing schedule by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned key for a contract billing schedule. Example: 1843 |
Array of objects Contract billing schedule lines. | |||||||||||||||||||||||||
Array
|
OK
Bad Request
{- "lines": [
- {
- "scheduledBillingDate": "2022-05-25",
- "scheduledAmount": "125.34"
}
]
}
{- "ia::result": {
- "key": "12",
- "id": "2021-LV2",
- "href": "/objects/contracts/billing-schedule/12"
}, - "ia::meta": {
- "totalCount": 1
}
}
Use the query service to find billing schedules 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
}
}