Skip to main content
GET
/
webhooks
/
{session_id}
Get webhook events for a run
curl --request GET \
  --url https://api.cloudcruise.com/webhooks/{session_id} \
  --header 'cc-key: <api-key>'
{
  "webhook_events": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "workflow_id": "<string>",
      "session_id": "<string>",
      "url": "<string>",
      "delivered": true,
      "delivery_errors": [
        "<string>"
      ],
      "duration": 123,
      "retries": 123,
      "message": {}
    }
  ]
}
Use this endpoint to inspect previously recorded webhook deliveries for a run, including payload envelopes, delivery status, retry attempts, and timing.

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header.

Path Parameters

session_id
string
required

The ID of the session to retrieve webhook events for

Response

200 - application/json

Webhook events successfully retrieved

webhook_events
object[]
required