Skip to main content
GET
/
v1
/
reimbursements
List Reimbursements
curl --request GET \
  --url https://api.cadanapay.com/v1/reimbursements \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "d1e2f3a4-5678-9012-cdef-345678901234",
      "userId": "a3b4c5d6-e7f8-9012-abcd-ef3456789012",
      "title": "Client dinner",
      "fullName": "Ada Lovelace",
      "currency": "USD",
      "destinationCurrency": "USD",
      "status": "Approved",
      "totalAmount": {
        "currency": "USD",
        "value": "1000.00"
      },
      "createdTimestamp": 1764332528,
      "lastUpdatedTimestamp": 1764332600
    }
  ],
  "node": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

Response

A list of reimbursements

data
object[]
node
object