v1
latestOpenAPI 3.1.02026-07-24111224223.3 KBCharges
Lists all charges
Pages card or out-of-pocket employee charges awaiting policy review, subsidiary allocation, or conversion into reimbursable payables. Filter by subsidiary_id or updated.gt when syncing corporate card feeds into downstream expense automation.
get/charges
Query parameters
limitinteger
Maximum number of rows to return in the page.
cursorstring
If defined, a cursor to retrieve the next page.
Example:iLQvkEj3sh3UiweC
Pagination cursor to navigate through the full response.
subsidiary_idstring uuid
Subsidiary to be used when filtering data
updated.gtstring date-time
Example:2023-01-01T00:00:00Z
Filter charges updated after this timestamp
Response
OK
Example response
{
"charges": [
{
"items": [
{
"description": "API Charge",
"account_code": "11112",
"amount": {
"amount": "1.01",
"currency": "USD"
},
"tax_rate": {
"tax_amount": {
"amount": "1.01",
"currency": "USD"
},
"country": "US"
}
}
],
"credit_card_account_code": "11112",
"external_references": [
{
"type": "xyzSystemId",
"id": "234",
"url": "https://xyzsystempage.com/ids/234"
}
],
"exchange_rate": {
"base": "USD",
"target": "USD"
}
}
],
"pagination": {
"next_cursor": "iLQvkEj3sh3UiweC"
}
}