FullStory · Schema

Endpoint

A configured webhook endpoint in FullStory

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
id string Unique identifier for the webhook endpoint
url string The destination URL receiving webhook events
events array The event types configured for this endpoint
signingSecret string Secret used to sign webhook payloads for verification
enabled boolean Whether the endpoint is actively receiving events
createdAt string Timestamp when the endpoint was created
View JSON Schema on GitHub

JSON Schema

fullstory-endpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Endpoint",
  "title": "Endpoint",
  "type": "object",
  "description": "A configured webhook endpoint in FullStory",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the webhook endpoint"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The destination URL receiving webhook events"
    },
    "events": {
      "type": "array",
      "description": "The event types configured for this endpoint",
      "items": {
        "$ref": "#/components/schemas/EventTypeConfig"
      }
    },
    "signingSecret": {
      "type": "string",
      "description": "Secret used to sign webhook payloads for verification"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the endpoint is actively receiving events"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the endpoint was created"
    }
  }
}