Root Insurance · Schema

webhook-queue-event

InsuranceAuto InsuranceTelematicsEmbedded InsurancePolicy AdministrationClaimsUsage-Based InsuranceInsurtech

Properties

Name Type Description
webhook_queue_event_id string The identifier of the webhook queue event.
organization_id string The identifier of the organization.
environment string The environment in which the queue event occurred.
webhook_id string The identifier of the webhook associated with this queue event.
created_at string The timestamp when the webhook queue event was created.
status string The current status of the webhook queue event.
subscription object The subscription event type for this webhook queue event.
url string The URL to which the webhook queue event will be sent via `POST`.
attempts_count integer The number of attempts made to process this webhook queue event.
body object The payload body of the webhook queue event.
last_attempt_at string The timestamp of the last attempt to process this webhook queue event.
last_response_code integer The HTTP response code from the last attempt to process this webhook queue event.
last_response_time_millis integer The response time of the last attempt to send the webhook queue event to the URL in milliseconds.
View JSON Schema on GitHub

JSON Schema

webhook-queue-event.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "webhook-queue-event",
  "type": "object",
  "required": [
    "webhook_queue_event_id",
    "organization_id",
    "environment",
    "webhook_id",
    "created_at",
    "status",
    "url",
    "subscription",
    "attempts_count"
  ],
  "properties": {
    "webhook_queue_event_id": {
      "type": "string",
      "description": "The identifier of the webhook queue event."
    },
    "organization_id": {
      "type": "string",
      "description": "The identifier of the organization."
    },
    "environment": {
      "type": "string",
      "description": "The environment in which the queue event occurred.",
      "enum": [
        "production",
        "sandbox"
      ]
    },
    "webhook_id": {
      "type": "string",
      "description": "The identifier of the webhook associated with this queue event."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The timestamp when the webhook queue event was created."
    },
    "status": {
      "type": "string",
      "description": "The current status of the webhook queue event.",
      "enum": [
        "queued",
        "successful",
        "failed"
      ]
    },
    "subscription": {
      "description": "The subscription event type for this webhook queue event.",
      "$ref": "#/components/schemas/webhook-subscription-event"
    },
    "url": {
      "type": "string",
      "description": "The URL to which the webhook queue event will be sent via `POST`."
    },
    "attempts_count": {
      "type": "integer",
      "description": "The number of attempts made to process this webhook queue event."
    },
    "body": {
      "type": "object",
      "description": "The payload body of the webhook queue event.",
      "properties": {
        "webhook_id": {
          "type": "string",
          "description": "The unique ID of the webhook."
        },
        "event": {
          "type": "object",
          "description": "The event data - see [webhook subscriptions](ref:webhooks#available-subscriptions) for available event types."
        },
        "verification_token": {
          "type": "string",
          "description": "An optional verification token as provided during creating a webhook."
        },
        "environment": {
          "type": "string",
          "enum": [
            "sandbox",
            "production"
          ],
          "description": "The dataset used by the webhook. Either sandbox or production."
        }
      },
      "required": [
        "webhook_id",
        "event",
        "environment"
      ]
    },
    "last_attempt_at": {
      "type": "string",
      "format": "date-time",
      "description": "The timestamp of the last attempt to process this webhook queue event."
    },
    "last_response_code": {
      "type": "integer",
      "description": "The HTTP response code from the last attempt to process this webhook queue event."
    },
    "last_response_time_millis": {
      "type": "integer",
      "description": "The response time of the last attempt to send the webhook queue event to the URL in milliseconds."
    }
  },
  "example": {
    "webhook_queue_event_id": "123e4567-e89b-12d3-a456-426614174000",
    "organization_id": "2f26d0e1-9158-4685-83e8-1660c27e4c3f",
    "environment": "production",
    "webhook_id": "274b2899-7957-464b-a609-49939039cd49",
    "created_at": "2023-04-01T12:00:00Z",
    "status": "queued",
    "subscription": "policy_issued",
    "attempts_count": 1,
    "last_attempt_at": "2023-04-01T12:00:02Z",
    "last_response_code": 500,
    "last_response_time_millis": 123,
    "body": {
      "webhook_id": "274b2899-7957-464b-a609-49939039cd49",
      "event": {
        "type": "policy_issued",
        "policy_id": "abc123"
      },
      "verification_token": "optional_token_123",
      "environment": "production"
    },
    "url": "http://yoururlhere.com"
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/webhook-queue-event"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.