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
Path parameters
subdomainstringRequired
Header parameters
x-api-keystringRequired
Responses
200
200
application/json
400
400
application/json
401
401
application/json
403
403
application/json
404
404
application/json
409
409
application/json
429
429
application/json
500
500
application/json
get
GET /public/communities/{subdomain}/webhooks HTTP/1.1
Host: api-v2.zealy.io
x-api-key: text
Accept: */*
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"uri": "https://example.com",
"communityId": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2025-06-27T08:59:07.289Z",
"updatedAt": "2025-06-27T08:59:07.289Z",
"active": true,
"secret": "text",
"events": [
"JOINED_COMMUNITY"
],
"success": 1,
"failed": 1,
"exhausted": 1
}
]
}
Path parameters
subdomainstringRequired
Header parameters
x-api-keystringRequired
Body
namestring · min: 1Required
uristring · uriRequired
activebooleanRequired
Responses
200
200
application/json
400
400
application/json
401
401
application/json
403
403
application/json
404
404
application/json
409
409
application/json
429
429
application/json
500
500
application/json
post
POST /public/communities/{subdomain}/webhooks HTTP/1.1
Host: api-v2.zealy.io
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 87
{
"name": "text",
"uri": "https://example.com",
"active": true,
"events": [
"JOINED_COMMUNITY"
]
}
{
"id": "123e4567-e89b-12d3-a456-426614174000"
}
Path parameters
webhookIdstring · uuidRequired
subdomainstringRequired
Header parameters
x-api-keystringRequired
Responses
200
200
400
400
application/json
401
401
application/json
403
403
application/json
404
404
application/json
409
409
application/json
429
429
application/json
500
500
application/json
delete
DELETE /public/communities/{subdomain}/webhooks/{webhookId} HTTP/1.1
Host: api-v2.zealy.io
x-api-key: text
Accept: */*
No content
Path parameters
webhookIdstring · uuidRequired
subdomainstringRequired
Header parameters
x-api-keystringRequired
Body
namestring · min: 1Optional
activebooleanOptional
uristring · uriOptional
Responses
200
200
400
400
application/json
401
401
application/json
403
403
application/json
404
404
application/json
409
409
application/json
429
429
application/json
500
500
application/json
patch
PATCH /public/communities/{subdomain}/webhooks/{webhookId} HTTP/1.1
Host: api-v2.zealy.io
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 87
{
"name": "text",
"active": true,
"uri": "https://example.com",
"events": [
"JOINED_COMMUNITY"
]
}
No content
Path parameters
subdomainstringRequired
Header parameters
x-api-keystringRequired
Responses
200
200
application/json
400
400
application/json
401
401
application/json
403
403
application/json
404
404
application/json
409
409
application/json
429
429
application/json
500
500
application/json
get
GET /public/communities/{subdomain}/webhooks-event-types HTTP/1.1
Host: api-v2.zealy.io
x-api-key: text
Accept: */*
[
"JOINED_COMMUNITY"
]
Path parameters
subdomainstringRequired
webhookIdstring · uuidRequired
Query parameters
limitnumber · min: 1 · max: 100OptionalDefault:
100
pagenumber | nullableOptionalDefault:
0
Header parameters
x-api-keystringRequired
Responses
200
200
application/json
400
400
application/json
401
401
application/json
403
403
application/json
404
404
application/json
409
409
application/json
429
429
application/json
500
500
application/json
get
GET /public/communities/{subdomain}/webhooks/{webhookId}/events HTTP/1.1
Host: api-v2.zealy.io
x-api-key: text
Accept: */*
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"webhookId": "123e4567-e89b-12d3-a456-426614174000",
"status": "success",
"createdAt": "2025-06-27T08:59:07.289Z",
"updatedAt": "2025-06-27T08:59:07.289Z",
"retryAt": "2025-06-27T08:59:07.289Z",
"eventType": "text",
"tries": 1
}
],
"page": 1
}
Last updated
Was this helpful?