FullStory · Schema

CreateEndpointRequest

Request body for creating a new webhook endpoint

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
url string The URL that will receive webhook event notifications
events array The types of events this endpoint should receive
View JSON Schema on GitHub

JSON Schema

fullstory-createendpointrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateEndpointRequest",
  "title": "CreateEndpointRequest",
  "type": "object",
  "required": [
    "url",
    "events"
  ],
  "description": "Request body for creating a new webhook endpoint",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL that will receive webhook event notifications"
    },
    "events": {
      "type": "array",
      "description": "The types of events this endpoint should receive",
      "items": {
        "$ref": "#/components/schemas/EventTypeConfig"
      }
    }
  }
}