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 perfor
description: "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."
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.
For accessing the API a valid JWT must be passed in all queries in the 'Authorization' header. The following syntax must be used in the 'Authorization' header. (Bearer xxx.yyy.zzz)
The unique identifier of the bulk operation.
Pagination token to retrieve the next page of results.
The number of items to retrieve per page.
Filter items by status (e.g., BULK_ITEM_SUCCESS, BULK_ITEM_FAILED).
Details of the bulk operation status and progress.
Unique identifier for the bulk operation.
Timestamp when the bulk operation was created.
Number of items that failed processing.
Token to retrieve the next page of results.
BULK_OPERATION_TYPE_UNSPECIFIEDPossible values: BULK_OPERATION_RESOURCE_UNSPECIFIEDPossible values: BULK_OPERATION_UNSPECIFIEDPossible values: Number of items processed successfully.
Total number of items in the bulk operation.
Timestamp when the bulk operation was last updated.
There was a problem with input.
Login failed or token not valid.
Access denied due to insufficient permissions.
An unexpected error response.
GET /v2/wallets/bulk/status/{id} HTTP/1.1
Host: billing.<env>.citrusad.com
Authorization: YOUR_API_KEY
Accept: */*
{
"bulkId": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"failureCount": "text",
"items": [
{
"createWalletRequest": {
"archived": false,
"creditLimit": "50000.00",
"currencyCode": "USD",
"dailyBudget": "1000.00",
"externalId": "ext_789GHI",
"id": "wallet_12345ABC",
"name": "MainCompanyWallet",
"namespaceId": "namespace_xyz987",
"teamId": "team_456DEF"
},
"errorResponse": {
"details": "text"
},
"status": "BULK_ITEM_UNSPECIFIED",
"successResponse": {
"message": "text",
"walletId": "text"
},
"updateWalletRequest": {
"archived": false,
"creditLimit": "50000.00",
"currencyCode": "USD",
"dailyBudget": "1000.00",
"externalId": "ext_789GHI",
"id": "wallet_12345ABC",
"name": "MainCompanyWallet",
"namespaceId": "namespace_xyz987",
"teamId": "team_456DEF"
}
}
],
"nextPageToken": "text",
"operationType": "BULK_OPERATION_TYPE_UNSPECIFIED",
"resource": "BULK_OPERATION_RESOURCE_UNSPECIFIED",
"status": "BULK_OPERATION_UNSPECIFIED",
"successCount": "text",
"totalCount": "text",
"updatedAt": "2026-01-01T00:00:00.000Z"
}
