Resolve Paused Automation Executions
Decide what to do with the executions that were paused while the automation’s circuit breaker was tripped. Idempotent.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
This API uses OAuth2 with the Client Credential flow. Client Credentials must be sent in the BODY, not the headers. For an example of how to implement this, refer to the c1TokenSource.Token() function.
Path Parameters
The unique identifier of the automation whose paused executions should be resolved.
Body
The ResolvePausedAutomationExecutionsRequest message.
Whether to run or cancel the paused executions.
PAUSED_EXECUTION_DECISION_UNSPECIFIED, PAUSED_EXECUTION_DECISION_RUN, PAUSED_EXECUTION_DECISION_CANCEL Optional human-readable reason for the resolution decision. Stored on the audit row (paused_run / paused_cancelled events) for post-mortem and compliance use. Surfaced in the FE as a required field on CANCEL so admins capture why bulk-cancellation happened. Up to 1024 bytes.
Response
Successful response
The ResolvePausedAutomationExecutionsResponse message.
The bulk action ID created to resolve the paused executions. Track progress via the BulkAction API.
Deprecated: see paused_count.
Deprecated: previously returned inline resolution counts. Now returns the bulk action ID for async tracking.