Skip to main content
GET
/
v1
/
sub-wallet
/
withdraw
/
list
Get List of Sub-Wallet Withdrawals
curl --request GET \
  --url https://api.openxswitch.com/v1/sub-wallet/withdraw/list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "wd_001",
      "workspaceId": "67804918f2b05ac82a129441",
      "clientTxId": null,
      "coin": "BTC",
      "chain": "BTC",
      "amount": 100,
      "network": "Ethereum",
      "fromAddress": "0xFromAddress001",
      "toAddress": "0xToAddress001",
      "hash": null,
      "transactionLink": null,
      "status": "success",
      "networkFee": 1,
      "tagMemo": null,
      "confirmation": 0,
      "confirmedAt": null,
      "createdAt": null,
      "walletId": "678a39d6b731ad1ad8832c8a"
    }
  ],
  "totalPage": 123,
  "pageNo": 123,
  "pageLimit": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.openxswitch.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

subWalletId
string

The unique identifier of the sub wallet

withdrawId
string

The unique identifier of the withdrawal

hash
string

The hash of the withdrawal transaction

senderAddress
string

The sender address

receiverAddress
string

The receiver address

chain
string

The 'chain' name.

Refer to the Get Recharge Currencies endpoint for the list of supported chains.

coin
string

The token name

pageNo
string

The page number for pagination

pageLimit
string

The number of items per page for pagination

Response

success
boolean
required
Example:

true

data
object[]
required
totalPage
number
required
pageNo
number
required
pageLimit
number
required