Transfers

Transfer funds between multiple accounts in your Aquanow profile

Create a transfer

POST https://api.aquanow.io/accounts/v1/transfer

To view example requests for this endpoint, visit Aquanow's Postman documentation.

Headers

NameTypeDescription

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

49c6260c194f4d7ed5cb917dc70b9821673246b2abc1cf28f05df6a75fd24181e00f8e57b321d15ae45db58b3bffe27a

Signature created using your API secret

x-nonce*

Number

1618307861949

Timestamp in millisecond

Content-Type*

String

application/json

Request Body

NameTypeDescription

symbol*

String

e.g., BTC

All uppercase letters, the crypto currency you are withdrawing.

quantity*

Number

Quantity you wish to transfer. Must have sufficient funds.

accountSenderId*

String

e.g., CA1000012R

Sender's account ID. Specify the accountId of the account you wish to make the transfer out of

accountRecipientId*

String

e.g., CA1000012R

Recipient's account ID. Specify the accountId of the account you wish to make the transfer into.

tag

String

Additional reference id that you can send with the transfer request.

Returns a TransactionObject.


{
    "$metadata": {
        "httpStatusCode": 200,
        "requestId": "68ae26e3-5bf6-506c-922f-79d74701b9ed",
        "attempts": 1,
        "totalRetryDelay": 0
    },
    "MD5OfMessageBody": "3ea55ab7e3e53b01fadcf1a6ca83151a",
    "MessageId": "94dba394-74e8-4292-8b9e-46b5c46c8e0d"
}

Last updated