Skip to content
Start here

Bulk Operations

Get bulk operation status
rules.lists.bulk_operations.get(stroperation_id, BulkOperationGetParams**kwargs) -> BulkOperationGetResponse
GET/accounts/{account_id}/rules/lists/bulk_operations/{operation_id}
ModelsExpand Collapse
One of the following:
class ListsBulkOperationPendingOrRunning:
id: str

The unique operation ID of the asynchronous action.

status: Literal["pending", "running"]

The current status of the asynchronous operation.

One of the following:
"pending"
"running"
class ListsBulkOperationCompleted:
id: str

The unique operation ID of the asynchronous action.

completed: str

The RFC 3339 timestamp of when the operation was completed.

status: Literal["completed"]

The current status of the asynchronous operation.

class ListsBulkOperationFailed:
id: str

The unique operation ID of the asynchronous action.

completed: str

The RFC 3339 timestamp of when the operation was completed.

error: str

A message describing the error when the status is failed.

status: Literal["failed"]

The current status of the asynchronous operation.