v1
latestOpenAPI 3.0.32026-07-2613529376.3 KBSub-Account
List Unconfirmed Sub-Account Withdrawals
The endpoint returns a paginated list of withdrawal transactions in unconfirmed_by_main_account status, created by sub-accounts of the authenticated main account and awaiting main account confirmation. Results are ordered by creation time, newest first.
<Note> The sub-account withdrawal endpoints are not available by default. To request access, contact institutional@whitebit.com. A `404 Not Found` response indicates the endpoint is not enabled for the account. </Note> <Note> The sub-account feature must be enabled for the region. </Note>post/api/v4/sub-account/withdraw/unconfirmed-list
Request body
Example request
{
"limit": 100,
"subAccountId": "a1b2c3d4-5678-90ab-cdef-1234567890ab"
}Response
Successful response
Example response
{
"data": [
{
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"subAccountId": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"currency": "BTC",
"amount": "12",
"createdAt": 1711882345
}
],
"limit": 100
}