Create Transfer Request

Create a money transfer request from a specific wallet.

Create a Withdrawal

Initiate a mutation to create an assets transfer request to send for approval from one of your organization's wallets.

circle-check
mutation CreateWithdrawal($data: WithdrawalCreateInput!) {
  createWithdrawal(data: $data) {
    id
  }
}

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body (WithdrawalCreateInput) object

Name
Type
Description

id*

String

Wallet ID

id* (financialAsset)

String

Asset ID

address*

String

Destination Address (To)

amount*

Integer

Transfer amount

id* (blockchain)

String

Blockchain ID

note

String

Transaction Note

priority

String

Transaction Priority

(Slow, medium, fast, etc.)

Example body:

Response

Return values:

Name
Type
Description

id

String

Withdrawal ID

Try it out!

Last updated