Post Webhook Events
Method: POST
/api/webhooks/public/{source}/events
Description
This endpoint is used to receive webhook events from a specified source. The source of the webhook must be specified in the path parameter. Currently, only "ZOHO" is supported as a source.
🔑 Authentication
No authentication is required for this endpoint.
Path Parameters
| Name | Type | Description | Available Values |
|---|---|---|---|
source | string | The source of the webhook event. | ZOHO |
Request Body
The request body for this endpoint is expected to contain the event details from the webhook source. Since the schema is dynamic based on the source, it may vary depending on the type of event sent.
Example Request Body:
{}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/webhooks/public/{source}/events \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!