| Field | Type | Description |
|---|---|---|
reason | string | Reason for replacement. Nullable. |
shippingAddress | object | Fields: addressLine1, addressLine2, city, state, postalCode, country |
curl --location -g --request POST '/{{baseurl}}/api/v1/cards//replace' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;' \
--header 'Content-Type: application/json' \
--data-raw '{
"reason": "Card damaged beyond use",
"shippingAddress": {
"addressLine1": "10 Downing Street",
"city": "London",
"postalCode": "SW1A 2AA",
"country": "GB"
}
}'