curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/webhooks' \
--header 'X-API-Key: YOUR_API_KEY'
{
"count": 1,
"endpoints": [
{
"created_at": "string",
"description": "string",
"events": [],
"id": "string",
"is_active": true,
"signing_secret_prefix": "string",
"url": "string"
}
]
}
List webhooks handlers
Required scope: read
GET
/
api
/
v1
/
webhooks
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/webhooks' \
--header 'X-API-Key: YOUR_API_KEY'
{
"count": 1,
"endpoints": [
{
"created_at": "string",
"description": "string",
"events": [],
"id": "string",
"is_active": true,
"signing_secret_prefix": "string",
"url": "string"
}
]
}
Required scope:
read
Response
ListWebhooksResponse
integer
required
WebhookSummary[]
required
Status codes
| Code | Meaning |
|---|---|
200 | List of registered webhook endpoints |
401 | Unauthorized |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request GET \
--url 'https://api.nsr.stateset.com/api/v1/webhooks' \
--header 'X-API-Key: YOUR_API_KEY'
{
"count": 1,
"endpoints": [
{
"created_at": "string",
"description": "string",
"events": [],
"id": "string",
"is_active": true,
"signing_secret_prefix": "string",
"url": "string"
}
]
}