Returns a collection with a key, ID, and link for each vendor total. 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": "85",
- "id": "111",
- "href": "/objects/accounts-payable/vendor-total/85"
}, - {
- "key": "86",
- "id": "113",
- "href": "/objects/accounts-payable/vendor-total/86"
}
], - "ia::meta": {
- "totalCount": 2,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}
Returns detailed information for a specified vendor total.
key required | string System-assigned unique key for the vendor total. Example: 86 |
OK
Bad Request
{- "ia::result": {
- "key": "85",
- "vendor": {
- "id": "202",
- "name": "Pac Bell",
- "key": "48",
- "href": "/objects/accounts-payable/vendor/48"
}, - "entity": {
- "id": "1",
- "name": "United States"
}, - "totalDue": "1400.00",
- "id": "48",
- "href": "/objects/accounts-payable/vendor-total/85"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}