Use webhooks to receive real-time notifications when important events happen inside your workspace, such as new submissions, project updates, or completed actions.
How It Works
Steps:
Open your workspace settings.
Create a new webhook endpoint.
Add the destination URL for your application.
Select the events you want to receive.
Send a test event to confirm the connection.
Webhook Example
Example Webhook Payload
{
"event": "project.updated",
"created_at": "2026-05-19T10:30:00Z",
"data": {
"id": "project_123",
"name": "Marketing Website",
"status": "published"
}
}Create Webhook Endpoint
Add a secure endpoint in your application where webhook events will be received. This endpoint should be able to accept POST requests.
Choose Event Types
Select only the events your application needs. This keeps your workflow clean and avoids unnecessary data processing.

Test The Connection
Send a test webhook from your dashboard and verify that your application receives the payload successfully.

Done
Your webhook is now active. New events will be sent automatically to your configured endpoint whenever matching actions occur.
Good to Know
Webhook delivery may be retried if your endpoint does not respond successfully. Make sure your server returns a valid success response after processing each event.
Setup Advice
Keep webhook handling fast and reliable. For complex tasks, receive the event first, then process heavier operations in the background.