Delete Wallet Account Limit
Delete a limit on a wallet account.
Note
The request must specify the
account_id
or thecurrency
.Deprecated endpoint:
DELETE /v1/user/:wallet/account/limits
Rapyd will continue to support the deprecated endpoint until December 31, 2024.
Related Information
ewallet
Rapyd Wallet ID defined by the customer or end user. Must be unique.
account_id
The ID of the account within the wallet.
currency
Three-letter ISO 4217 code for the currency of the amount.
type
The limit type.
/v1/ewallets/:ewallet/account/limits
Delete Wallet Account Limit
curl -X delete https://sandboxapi.rapyd.net/v1/ewallets/ewallet_f86e34cfde1aa06dc0468d98b593a7f2/account/limits?currency=USD&type=max_balance_limit&account_id=5221e6b8-ed4d-47f6-80c4-3c757f00ce26 -H 'access_key: your-access-key-here' -H 'Content-Type: application/json' -H 'salt: your-random-string-here' -H 'signature: your-calculated-signature-here' -H 'timestamp: your-unix-timestamp-here'
{ "status": { "error_code": "", "status": "SUCCESS", "message": "", "response_code": "", "operation_id": "fb895227-4278-4d48-a11c-bf0c569e9e70" }, "data": [ { "id": "5221e6b8-ed4d-47f6-80c4-3c757f00ce26", "currency": "USD", "alias": "USD", "balance": 99999, "received_balance": 0, "on_hold_balance": 0, "reserve_balance": 0, "limits": null, "limit": null } ] }