| Field | Type | Description | Constraints |
|---|---|---|---|
amount | number | Amount to load. Must be > 0 | Min: 0.01 |
currency | string | ISO 4217 code matching the card's currency | - |
curl --location -g --request POST '/{{baseurl}}/api/v1/cards//topup' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": 500,
"currency": "GBP"
}'