Skip to main content
GET
/
v1
/
reimbursements
/
{reimbursementId}
Get Reimbursement
curl --request GET \
  --url https://api.cadanapay.com/v1/reimbursements/{reimbursementId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "d1e2f3a4-5678-9012-cdef-345678901234",
  "userId": "a3b4c5d6-e7f8-9012-abcd-ef3456789012",
  "title": "Client dinner",
  "fullName": "Ada Lovelace",
  "currency": "USD",
  "destinationCurrency": "USD",
  "status": "Approved",
  "entries": [
    {
      "id": "e1f2a3b4-5678-9012-cdef-345678901234",
      "description": "Dinner with client",
      "amount": {
        "currency": "USD",
        "value": "1000.00"
      },
      "category": "Meals",
      "date": "2025-11-28"
    }
  ],
  "sourceAmount": {
    "currency": "GHS",
    "value": "15420.00"
  },
  "destinationAmount": {
    "currency": "USD",
    "value": "1000.00"
  },
  "fxRate": {
    "USD-GHS": "15.42"
  },
  "createdTimestamp": 1764332528,
  "lastUpdatedTimestamp": 1764332600
}

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.

Path Parameters

reimbursementId
string<uuid>
required

The unique identifier for the reimbursement

Query Parameters

potentialSourceCurrency
string

Return a potentialSourceAmount quote — the estimated amount that would be debited from a wallet of this currency to fund the reimbursement, at current FX rates. Only computed while the reimbursement is not yet approved or paid.

Response

The reimbursement

id
string<uuid>
userId
string<uuid>
title
string
fullName
string
currency
string
destinationCurrency
string
status
string
entries
object[]
sourceAmount
object
destinationAmount
object
potentialSourceAmount
object

Estimated amount that would be debited from a potentialSourceCurrency wallet to fund this reimbursement, at current FX rates. Only returned when the potentialSourceCurrency query parameter is supplied and the reimbursement is not yet approved or paid.

fxRate
object

Conversion rates applied when the source and destination currencies differ, keyed by FROM-TO currency pair. Absent when no conversion was needed.

createdTimestamp
integer
lastUpdatedTimestamp
integer