v1
latestOpenAPI 3.0.02026-07-2466275257.1 KBBulkWalletOperations
Retrieve bulk wallet operation status
This endpoint retrieves the status of a bulk wallet operation using its bulk ID. It has been enhanced to support pagination (default: 20 items per page) and status-based filtering, for improved performance and targeted data retrieval. Use this endpoint to check the progress and completion status of bulk update operations.
get/v2/wallets/bulk/status/{id}
Path parameters
idstring required
The unique identifier of the bulk operation.
Query parameters
pageTokenstring
Pagination token to retrieve the next page of results.
pageSizestring int64
The number of items to retrieve per page.
statusstring
Filter items by status (e.g., BULK_ITEM_SUCCESS, BULK_ITEM_FAILED).
Response
Details of the bulk operation status and progress.
Example response
{
"items": [
{
"updateWalletRequest": {
"id": "wallet_12345ABC",
"namespaceId": "namespace_xyz987",
"teamId": "team_456DEF",
"name": "MainCompanyWallet",
"externalId": "ext_789GHI",
"currencyCode": "USD",
"creditLimit": "50000.00",
"dailyBudget": "1000.00"
},
"createWalletRequest": {
"id": "wallet_12345ABC",
"namespaceId": "namespace_xyz987",
"teamId": "team_456DEF",
"name": "MainCompanyWallet",
"externalId": "ext_789GHI",
"currencyCode": "USD",
"dailyBudget": "1000.00"
}
}
]
}