Webhooks
Overview
Webhooks mechanism allows platform integrations by subscribing to certain Events. When the Event is triggered, the platform sends an HTTP POST request with the payload to the configured webhook URL.
Subscription
Subscription to the events is configured during instance handshake.
To change existing subscriptions, the handshake can be repeated with a different response body.
Webhook receiver
Here are some requirements and tips for webhook receiver endpoints:
An endpoint must respond with HTTP 200 (OK). Otherwise, webhook delivery is retried.
Webhook endpoint should respond as quickly as possible. If response time exceeds the predefined duration (5 seconds currently), delivery is considered as failed and retried. If heavy processing is possible within the endpoint routine, it is worth extracting it into background processing (queue).
Error handling and retries
Webhook delivery is considered as failed in such cases:
network error
response code is not 200 OK
it took too long for the receiver to respond (timeout)
In case of failure, delivery is retried. Currently, there are 5 attempts in total to deliver the webhook, with 3 seconds interval between each.
Each event payload has an ID parameter that uniquely identifies the triggered webhook event. It is the same for every delivery retry, so it can be used to guarantee that a specific event is processed once at most.
Webhook body schema
Event payload of any type has the following schema:
Property
Format
Description
id
string (UUID)
Unique identifier of the triggered webhook event
ts
number
Timestamp of emitted event, in milliseconds
type
string
Webhook event type; Possible options are described below
payload
object
An object containing event type-specific payload
Example
Webhook event types and payloads
Note that only payload schemas and examples are provided below. The whole structure of the webhook request body is described in Webhook body schema section.
Organisation
organisation_updated
Triggered when an Organisation is updated in Studio.
Payload schema
Property
Format
Description
organisation.id
string (UUID)
Organisation ID
Payload example
Space
space_updated
Triggered when a Space is updated in Studio.
Payload schema
Property
Format
Description
organisation.id
string (UUID)
Organisation ID
space.id
string (UUID)
Space ID
Payload example
Project
project_updated
Triggered when a Project is updated in Studio.
Payload schema
Property
Format
Description
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
Event
event_created
Triggered when an Event is created in Studio.
Payload schema
Property
Format
Description
event.id
string (UUID)
Event ID
event.name
string
Event name
event.source_event_id
string (UUID)
Experience source event/template ID
project.id
string (UUID)
Project ID
project.name
string
Project name
space.id
string (UUID)
Space ID
space.name
string
Space name
organisation.id
string (UUID)
Organisation ID
organisation.name
string
Organisation name
Payload example
event_updated
Triggered when an Event is updated in Studio.
Payload schema
Property
Format
Description
event.id
string (UUID)
Event ID
event.source_event_id
string (UUID)
Experience source event/template ID
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
event_deleted
Triggered when an Event is deleted in Studio.
Payload schema
Property
Format
Description
event.id
string (UUID)
Event ID
event.source_event_id
string (UUID)
Experience source event/template ID
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
Event template
event_template_created
Triggered when an Event template is created in Studio.
Payload schema
Property
Format
Description
event_template.id
string (UUID)
Event template ID
event_template.name
string
Event template name
event_template.source_event_id
string (UUID)
Experience source event/template ID
project.id
string (UUID)
Project ID
project.name
string
Project name
space.id
string (UUID)
Space ID
space.name
string
Space name
organisation.id
string (UUID)
Organisation ID
organisation.name
string
Organisation name
Payload example
event_template_updated
Triggered when an Event template is updated in Studio.
Payload schema
Property
Format
Description
event_template.id
string (UUID)
Event template ID
event_template.source_event_id
string (UUID)
Experience source event/template ID
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
event_template_deleted
Triggered when an Event template is deleted in Studio.
Payload schema
Property
Format
Description
event_template.id
string (UUID)
Event template ID
event_template.source_event_id
string (UUID)
Experience source event/template ID
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
Elements
element_created
Triggered when an Element is created in Studio.
Payload schema
Property
Format
Description
element.id
string (UUID)
Element ID
event_template.id
string (UUID)
Event template ID (if the element belongs to a template)
event.id
string (UUID)
Event ID (if the element belongs to an event)
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
element_updated
Triggered when an Element is updated in Studio.
Payload schema
Property
Format
Description
element.id
string (UUID)
Element ID
event_template.id
string (UUID)
Event template ID (if the element belongs to a template)
event.id
string (UUID)
Event ID (if the element belongs to an event)
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
element_deleted
Triggered when an Element is deleted in Studio.
Payload schema
Property
Format
Description
element.id
string (UUID)
Element ID
event_template.id
string (UUID)
Event template ID (if the element belongs to a template)
event.id
string (UUID)
Event ID (if the element belongs to an event)
project.id
string (UUID)
Project ID
space.id
string (UUID)
Space ID
organisation.id
string (UUID)
Organisation ID
Payload example
Last updated