Webhooks API
List Endpoints
GET
/
v1
/
operational-webhook
/
endpoint
TypeScript SDK
import { Solifyn } from 'solifyn';
const solifyn = new Solifyn({ apiKey: 'your_private_api_key_here' });
// List operational webhook endpoints
const endpoints = await solifyn.webhookEndpoint.list();
console.log('Operational endpoints:', endpoints);{
"data": [
{
"id": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga2",
"url": "https://example.com/webhook/",
"description": "Production monitoring endpoint",
"disabled": false,
"filterTypes": [
"message.attempt.failing"
],
"throttleRate": 0,
"createdAt": "2026-05-30T14:11:29.071Z",
"updatedAt": "2026-05-30T14:11:29.071Z",
"metadata": {
"environment": "production"
},
"uid": "monitoring-prod-endpoint",
"secret": "whsec_C2FVsBQIhrscChlQIMV+b5sSYspob7oD"
}
],
"done": true,
"iterator": "iterator-token-abc",
"prevIterator": "prev-iterator-token-abc"
}⌘I
TypeScript SDK
import { Solifyn } from 'solifyn';
const solifyn = new Solifyn({ apiKey: 'your_private_api_key_here' });
// List operational webhook endpoints
const endpoints = await solifyn.webhookEndpoint.list();
console.log('Operational endpoints:', endpoints);{
"data": [
{
"id": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga2",
"url": "https://example.com/webhook/",
"description": "Production monitoring endpoint",
"disabled": false,
"filterTypes": [
"message.attempt.failing"
],
"throttleRate": 0,
"createdAt": "2026-05-30T14:11:29.071Z",
"updatedAt": "2026-05-30T14:11:29.071Z",
"metadata": {
"environment": "production"
},
"uid": "monitoring-prod-endpoint",
"secret": "whsec_C2FVsBQIhrscChlQIMV+b5sSYspob7oD"
}
],
"done": true,
"iterator": "iterator-token-abc",
"prevIterator": "prev-iterator-token-abc"
}