Skip to main content

Documentación

Delete Wallet Account Limit

Delete a limit on a wallet account.

Nota

  • Deprecated endpoint: DELETE /v1/user/:wallet/account/limits

    Rapyd no longer supports the deprecated endpoint.

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.

    • 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' \
    -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' \
    --data-raw '{
        "type": "max_balance_limit",
        "account_id": "5221e6b8-ed4d-47f6-80c4-3c757f00ce26"
    }'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "6e6c3378-1a19-468b-9a84-e172241a783e"
        },
        "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
            }
        ]
    }