Webhooks
Overview
This set of endpoints allows you to do all kinds of operations on your community webhooks. Learn more about how webhooks work and which events are available on our product documentation.
API Reference
List all webhooks of your community
GEThttps://api-v2.zealy.io/public/communities/{subdomain}/webhooks
Path parameters
subdomain*string
Header parameters
Response
200
Body
items*array of object
Request
Response
Create a new webhook
POSThttps://api-v2.zealy.io/public/communities/{subdomain}/webhooks
Path parameters
subdomain*string
Header parameters
Body
Body
name*string
uri*string (uri)
active*boolean
events*array of enum
Response
200
Body
id*string (uuid)
Request
Response
Delete a webhook
DELETEhttps://api-v2.zealy.io/public/communities/{subdomain}/webhooks/{webhookId}
Path parameters
webhookId*string (uuid)
subdomain*string
Header parameters
Response
200
Request
Response
Update a webhook
PATCHhttps://api-v2.zealy.io/public/communities/{subdomain}/webhooks/{webhookId}
Path parameters
webhookId*string (uuid)
subdomain*string
Header parameters
Body
Body
namestring
activeboolean
uristring (uri)
eventsarray of enum
Response
200
Request
Response
List available event types a webhook can subscribe to
GEThttps://api-v2.zealy.io/public/communities/{subdomain}/webhooks-event-types
Path parameters
subdomain*string
Header parameters
Response
200
Body
itemsenum
JOINED_COMMUNITYLEFT_COMMUNITYQUEST_SUCCEEDEDQUEST_CLAIMEDQUEST_FAILEDQUEST_CLAIM_STATUS_UPDATEDSPRINT_STARTEDSPRINT_ENDEDUSER_BANNED
Request
Response
List events a webhook is subscribed to
GEThttps://api-v2.zealy.io/public/communities/{subdomain}/webhooks/{webhookId}/events
Path parameters
subdomain*string
webhookId*string (uuid)
Query parameters
Header parameters
Response
200
Body
items*array of object
page*number
Request
Response
Last updated