POST /api/auth/add-bank-account

Use this API to add bank accounts.

This API is used to add a new bank account. A new deposit address associated to the bank account will also be created. Users can use the deposit address to request a redeem to the bank account.

Parameters

  1. bankAccountNumber (String):

    This parameter represents the bank account number.

  2. bankCode (String):

    This parameter represents the bank code. Get a list of available banks from this api.

Example Request

curl -X POST '<https://idrx.co/api/auth/add-bank-account>' --header 'idrx-api-key: <API_KEY>' --header 'idrx-api-sig: <signature>' --header 'idrx-api-ts': <timestamp>' --header 'Content-Type': multipart/form-data'

Payload

{
  "bankAccountNumber": "string",
  "bankCode": "string",
}

Response

If the request is successful, the response will be as shown below:

Last updated