FullStory · Schema

UpdateEndpointRequest

Request body for updating an existing webhook endpoint

Session ReplayProduct AnalyticsDigital ExperienceBehavioral AnalyticsFrontend Monitoring

Properties

Name Type Description
url string The new destination URL for webhook events
events array Updated list of event types for this endpoint
signingSecret string Updated signing secret for verifying webhook payloads
enabled boolean Whether the endpoint is enabled and receiving events
View JSON Schema on GitHub

JSON Schema

fullstory-updateendpointrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateEndpointRequest",
  "title": "UpdateEndpointRequest",
  "type": "object",
  "description": "Request body for updating an existing webhook endpoint",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The new destination URL for webhook events"
    },
    "events": {
      "type": "array",
      "description": "Updated list of event types for this endpoint",
      "items": {
        "$ref": "#/components/schemas/EventTypeConfig"
      }
    },
    "signingSecret": {
      "type": "string",
      "description": "Updated signing secret for verifying webhook payloads"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the endpoint is enabled and receiving events"
    }
  }
}