v2

latestOpenAPI 3.1.12026-07-2613060964.2 KB

Delink Schema from Event

Remove the linked schema from an event, making it schema-less. This allows the event to accept any payload structure without validation against a predefined schema.

patch/v1/{workspace}/event/{url_encoded_event_name}/delink_schema/

Path parameters

workspacestring required

Workspace slug (staging, production, etc.)

url_encoded_event_namestring required

URL encoded event name. Example - SHIPMENT%20ARRIVED

Response

Successfully delinked schema from event

namestring

Event name

descriptionstring

Description of the event

{"stackTrail":"paths:/v1/{workspace}/event/{url_encoded_event_name}/delink_schema/:patch:responses:200:content:application/json:schema:properties:payload_schema","oasType":"schema","type":"unknown","description":"Schema has been delinked from the event","example":null}
created_atstring date-time

When the event was created

$schemastring

JSON Schema reference for how the event API call should be structured

Example response

{
  "name": "user_signup",
  "description": "Triggered whenever a new user successfully signs up on the platform",
  "payload_schema": null,
  "created_at": "2025-08-27T09:30:57.945326Z",
  "$schema": "https://schema.suprsend.com/event/v1/schema.json"
}