Skip to main content
You can register webhooks to receive execution events. Webhooks can be scoped to a single workflow or registered globally for all workflows in your workspace. Per-workflow webhooks fire only for runs of a specific workflow. Global webhooks fire for every workflow in your workspace. Every event payload includes a workflow_id field so you can route on your end. Register them in Settings → Webhooks by selecting “All Workflows” as the scope. For the full list of subscribable events you can set in event_types_subscribed, see the webhook schema in the Run API reference. Maintenance recovery flows emit the lifecycle events documented below, such as execution.requeued, execution.input_required, execution.password_updated, and the final terminal status.
This event is sent once when the execution of the workflow starts. It returns a live view URL of the running browser agent embeddable as iframe.
This event is sent every time the workflow is executing an action like clicking on a button or filling out an input field.
This event is sent when a run is queued and waiting for an available worker.
This event is sent when a run is paused before execution (for example, when workflow-level or credential-level pause controls are active).
This event is sent once when the execution of the workflow has finished successfully. It includes the result data that is returned from the workflow.
This event is sent once the execution of the workflow fails and contains information about the error.
The llm_error_category field contains an AI-generated categorization of the error type. This field may be null if AI analysis was not performed.The llm_error_sub_type field contains a more specific sub‑classification within the category. See the error classification matrix for all possible values. This field may be null if no sub‑type applies.The original_error field contains the raw technical runtime error message before any AI analysis. This is useful for debugging and differs from message field that contains the Maintenance Agent’s analysis.
This event is sent when one or several workflow runs were cancelled. It respectively either contains session_id of the cancelled run or session_ids that contains all of the cancelled runs.Response for single run cancelled:
Response for multiple cancelled at once:
This event is sent when a failed run is automatically requeued for retry by the Maintenance Agent (e.g., after a SERVICE_UNAVAILABLE classification). See Service Unavailable Recovery for retry schedule details.
This event is sent when a run pauses because incorrect input data was detected and the workflow is waiting for corrected values. Submit corrected fields using the Submit New Input Variables endpoint to resume execution.
This event is sent after an automated password recovery flow succeeds and CloudCruise updates the vault credential used by the run.
This event is sent when the upload of the screenshot has finished.
This event is sent when the upload of the workflow video has finished.
This event is sent when a file has been uploaded during workflow execution. The signed_file_url expiration is configurable per workspace (default: 7 days, range: 1 hour to 7 days). Configure this in your workspace settings.
This event is sent when user input is required to continue the workflow.
This event is sent when the user input was not provided in time or in a wrong format.
This event is sent when the user input was provided and the workflow continues.
Simply navigate to our settings page to get started.

Security

We sign webhook events with the secret you get when you register a webhook. We also add an expiry time. You can change the expiry time in the setting of the registered webhook. Here’s how we recommend to verify the message you receive from us:

IP Allowlisting

All webhook requests from CloudCruise originate from the following static IP addresses. If your infrastructure requires IP-based filtering, add these to your allowlist:

Payload Size

A registration can be configured to omit input_variables from the payloads it receives. Turn on Exclude input variables from the payload in the webhook dialog in Settings → Webhooks, or send excludeInputVariables: true when creating or updating the webhook through the API. The field is then left out of every event delivered to that endpoint. Use it when you start runs with large inputs and your endpoint enforces a body-size limit — you already hold the inputs you sent. Other registrations are unaffected, and the run result from GET /runs/{session_id} still returns the inputs. excludeInputVariables is optional on update: leave it out and the endpoint keeps whatever setting it already has. The setting applies from the moment you turn it on. Events recorded before then were stored with input_variables included, and replaying one re-sends it as recorded — replay never rebuilds the payload. If you enable the option to get under a body-size limit, expect replays of earlier events to still exceed it.

Deliverability

CloudCruise automatically retries failed webhook deliveries up to 3 times (4 total attempts including the initial request) with exponential backoff delays between attempts. Each delivery attempt has a 5-second request timeout. Total delivery time depends on failure mode, so retries may complete quickly for immediate network errors or take longer for repeated timeouts.

Retry Conditions

A webhook delivery is retried when:
  • Network errors occur (connection timeout, DNS failure, etc.)
  • Server errors are returned (HTTP status codes 500 and above)
  • Request timeouts exceed 5 seconds
Webhooks are not retried for client errors (4xx status codes) as these typically indicate configuration issues that won’t resolve with retries.

Manual Replay

If webhooks still fail after automatic retries, you can manually replay them:
  • Dashboard: Navigate to the run detail view and trigger a resend
  • API: Send a POST request to https://api.cloudcruise.com/webhooks/{session_id}/replay
The replay endpoint will re-send all webhook events that were recorded for the given session.