Skip to content
Start here

Bulk Operations

Get bulk operation status
GET/accounts/{account_id}/rules/lists/bulk_operations/{operation_id}
ModelsExpand Collapse
BulkOperationGetResponse = object { id, status } or object { id, completed, status } or object { id, completed, error, status }
One of the following:
ListsBulkOperationPendingOrRunning object { id, status }
id: string

The unique operation ID of the asynchronous action.

status: "pending" or "running"

The current status of the asynchronous operation.

One of the following:
"pending"
"running"
ListsBulkOperationCompleted object { id, completed, status }
id: string

The unique operation ID of the asynchronous action.

completed: string

The RFC 3339 timestamp of when the operation was completed.

status: "completed"

The current status of the asynchronous operation.

ListsBulkOperationFailed object { id, completed, error, status }
id: string

The unique operation ID of the asynchronous action.

completed: string

The RFC 3339 timestamp of when the operation was completed.

error: string

A message describing the error when the status is failed.

status: "failed"

The current status of the asynchronous operation.