Bill summaries are collections of the same type of transactions, grouped together for processing.
Returns a collection with a key, ID, and link for each bill summary. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "94",
- "id": "94",
- "href": "/objects/accounts-payable/bill-summary/94"
}, - {
- "key": "96",
- "id": "96",
- "href": "/objects/accounts-payable/bill-summary/96"
}
], - "ia::meta": {
- "totalCount": 2,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified bill summary.
key required | string System-assigned key for the bill summary. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "id": "98",
- "key": "98",
- "name": "Bills: 2022/08/02 Batch",
- "glPostingDate": "2022-08-02",
- "status": "active",
- "recordType": "apBill",
- "totalAmount": "100.23",
- "state": "open",
- "parent": {
- "id": null,
- "key": null
}, - "preventGLPosting": false,
- "bankAccountId": {
- "id": null,
- "key": null
}, - "summaryCreationType": "Auto-Summary",
- "isQuickPaymentSummary": false,
- "href": "/objects/accounts-payable/bill-summary/98"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}