Exchange Rates
Delete exchange rate
DELETE
/api/v1/products/exchange-rates/:idDeletes an exchange rate pair. Staff-only.
Requires Authorization
ADMIN, SUPPORT only
Authenticated action
Path parameters
idstringrequired | Exchange rate ID. |
Request
curl --request DELETE \
--url https://api.swiftgoma.com/api/v1/products/exchange-rates/:id \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"id": "fx_1a2b3c",
"deleted": true
}
}