Documentation Index
Fetch the complete documentation index at: https://docs.redbrickai.com/llms.txt
Use this file to discover all available pages before exploring further.
Webhooks allow you to receive an HTTP push notification triggered by certain events within a project. Currently, webhooks are triggered by the following events:
- Task created: When a data point is uploaded, and a task is created from that data point.
- Task entered stage: When a task enters a new stage in the labeling workflow.
- Task deleted: When a task is deleted.
Task created
Task entered stage
Task deleted
{
"version": "v1.0",
"events": 1,
"payload": [
{
"event": "TASK_CREATED",
"id": "...",
"timestamp": ...,
"data": {
"orgId": "...",
"projectId": "...",
"taskId": "...",
"taskName": "...",
"updatedBy": "..."
}
}
]
}
{
"version": "v1.0",
"events": 1,
"payload": [
{
"event": "TASK_ENTERED_STAGE",
"id": "...",
"timestamp": ...,
"data": {
"orgId": "...",
"projectId": "...",
"taskId": "...",
"stageName": "...",
"updatedBy": "..."
}
}
]
}
{
"version": "v1.0",
"events": 1,
"payload": [
{
"event": "TASK_DELETED",
"id": "...",
"timestamp": ...,
"data": {
"orgId": "...",
"projectId": "...",
"taskId": "...",
"taskName": "...",
"updatedBy": "..."
}
}
]
}
Using Webhooks
Configure a webhook from the Project Settings, as shown in the image below.
You can use tools like https://webhook.site/ to test the webhook and inspect the response format.