APIs
Error Codes
Overview When creating, updating, or deleting outgoing webhooks using APIs you might receive one of the below error codes as a response when the action has failed. Error Code Reason How to Fix 160018 Community Id is not available in the header. pass ...
Delete Webhook
Overview This API deletes an existing webhook. Once deleted, the configured URL will no longer receive event information from the webhook. API DELETE /api/v1/webhook/{id} Oauth Scope ConnectCommunity.outgoingwebhook.DELETE Sample request $curl -X ...
Outgoing Webhook APIs- An Overview
Overview Outgoing webhooks allow Zoho CommunitySpaces to send event information to an external application when a specified event occurs. Using the outgoing webhooks APIs, you can programmatically create, retrieve, update, and delete outgoing ...
Get Webhook
Overview This API retrieves the details of a specific outgoing webhook from your Zoho CommunitySpaces community. API GET /api/v1/webhook/{id} Oauth Scope ConnectCommunity.outgoingwebhook.READ Sample request $curl -X GET ...
Update Webhook
Overview This API updates an existing outgoing webhook. You can modify its name, description, triggers, and URL. If you change the URL, a validation request (ping trigger) is sent to the new endpoint. API PATCH /api/v1/webhook/{id} Oauth Scope ...
Create Webhook
Overview This API creates an outgoing webhook in your Zoho CommunitySpaces community. When you invoke the API, a validation request (ping trigger) is sent to the specified endpoint URL. The endpoint must return a 200 OK response to validate and ...