Retrieve bulk operation status
This endpoint retrieves the status and details of a bulk campaign operation using the bulk operation ID. It has been enhanced to support pagination (default: 20 items per page) and status-based filter
description: "This endpoint retrieves the status and details of a bulk campaign operation using the bulk operation ID. It has been enhanced to support pagination (default: 20 items per page) and status-based filtering, for improved performance and targeted data retrieval."
Retrieve bulk operation status
This endpoint retrieves the status and details of a bulk campaign operation using the bulk operation ID. It has been enhanced to support pagination (default: 20 items per page) and status-based filtering, for improved performance and targeted data retrieval.
For accessing the API a valid JWT 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).
Provides the status and details for the requested bulk campaign operation.
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.
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 /v3/campaigns/bulk/status/{id} HTTP/1.1
Host: campaign.<env>.citrusad.com
Authorization: YOUR_API_KEY
Accept: */*
{
"bulkId": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"failureCount": "text",
"items": [
{
"approvalStateRequest": {
"approval": {
"rejectionReason": "text",
"state": "APPROVAL_STATE_PENDING"
},
"campaignType": "CAMPAIGN_TYPE_BANNER",
"id": "text"
},
"campaignRequest": {},
"errorResponse": {
"details": "text"
},
"status": "BULK_ITEM_SUCCESS",
"successResponse": {
"campaignId": "text",
"message": "text"
}
}
],
"nextPageToken": "text",
"operationType": "BULK_OPERATION_TYPE_CAMPAIGN_UPDATE",
"resource": "BULK_OPERATION_RESOURCE_BILLING",
"status": "BULK_OPERATION_SUBMITTED",
"successCount": "text",
"totalCount": "text",
"updatedAt": "2026-01-01T00:00:00.000Z"
}
