Payloads
The webhook payloads you receive from Quartr
Introduction
When a webhook is triggered, Quartr sends a payload to the endpoint you specified. The payload contains information about the event that occurred, such as the type of event, the data that changed, and the previous state of the data. The objects are meant to reflect the models in our API, so you can easily map the payload to your internal data structures.
Payload structure
Types of events
There are three types of events you can receive:
- Created: A new entity was created.
- Updated: An existing entity was updated.
- Deleted: An entity was deleted.
Webhook Reference
Explore all available webhooks in more detail.
Headers
In addition to the typical headers, Quartr includes the following headers in the webhook request:
Webhook-Id
: A unique message identifier (not user-controlled).Webhook-Timestamp
: The time the message was generated (Unix timestamp in seconds).Webhook-Signature
: A cryptographic signature that allows you to verify the integrity and authenticity of the payload.
Body
The payload is a JSON object with the following structure:
The payload contains the following fields:
timestamp
: The time the event occurred.type
: The type of event that occurred.data
: The new state of the entity. Empty for deletes.previousAttributes
: The partial representation of previous state of the entity.
The property previousAttributes is only a partial representation and only includes fields that actually changed in the event.
The entity types and fields in the payload are the same as in our API. For example, the live.audio.updated
event payload mirrors the Live Audio
model in our API.
Was this page helpful?