curl --request GET \
--url https://api.sendx.io/api/v1/rest/webhook \
--header 'X-Team-ApiKey: <api-key>'
[
{
"id": "webhook_123",
"enabled": true,
"url": "https://example.com/webhook",
"unsubscribed": true,
"dropped": true,
"bounced": true,
"markedSpam": true,
"clicked": true,
"opened": true,
"created": 1669990400
}
]
Retrieve all webhooks for the requesting team.
curl --request GET \
--url https://api.sendx.io/api/v1/rest/webhook \
--header 'X-Team-ApiKey: <api-key>'
[
{
"id": "webhook_123",
"enabled": true,
"url": "https://example.com/webhook",
"unsubscribed": true,
"dropped": true,
"bounced": true,
"markedSpam": true,
"clicked": true,
"opened": true,
"created": 1669990400
}
]
A list of team webhooks.
The response is of type object[]
.
Was this page helpful?