Webhooks

Share on

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"

  }

}

1

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.

2

Choose Event Types

Select only the events your application needs. This keeps your workflow clean and avoids unnecessary data processing.

Image link
3

Test The Connection

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

Image link

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.

Still have a question?

Our friendly support team is here to help.

Contact Support
In this page
No headings were found on this page.
Contact us

Our team will reply as soon as possible.

    Our usual reply time: 1 Business day
    Search

    Start typing to search for a specific article on our website