v1
latestOpenAPI 3.1.02026-07-24111224223.3 KBCharges
Retrieves a charge
Fetches a single charge with merchant metadata, amounts, and workflow state so reviewers can decide coding before reimbursement. Use this after list-all-charges surfaces an id that needs manual inspection or attachment to a bill.
get/charges/{charge_id}
Path parameters
charge_idstring required
UUID of the charge to be used in this operation.
Response
OK
Example response
{
"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"
}
}