curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/webhooks/{endpoint_id}' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"url": "https://example.com/webhooks/stateset",
"events": [
"string"
],
"is_active": true,
"created_at": "2026-08-31T14:22:05Z",
"updated_at": "2026-08-31T14:22:05Z"
}
Get Webhook Endpoint V1
Fetch a single webhook endpoint by id. Mirrors the HEAD handler’s existence check but returns the endpoint summary body so dashboards/CLIs can show url +…
GET
/
api
/
v1
/
webhooks
/
{endpoint_id}
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/webhooks/{endpoint_id}' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"url": "https://example.com/webhooks/stateset",
"events": [
"string"
],
"is_active": true,
"created_at": "2026-08-31T14:22:05Z",
"updated_at": "2026-08-31T14:22:05Z"
}
Fetch a single webhook endpoint by id.
Mirrors the HEAD handler’s existence check but returns the endpoint
summary body so dashboards/CLIs can show url + events + active
state without listing every endpoint. Cross-tenant ids 404 — the
secret is never exposed.
Path parameters
string (uuid)
required
Response
WebhookEndpointSummary
string
required
string
required
string[]
required
boolean
required
string
required
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Successful Response |
422 | Validation Error |
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/webhooks/{endpoint_id}' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"url": "https://example.com/webhooks/stateset",
"events": [
"string"
],
"is_active": true,
"created_at": "2026-08-31T14:22:05Z",
"updated_at": "2026-08-31T14:22:05Z"
}
Last modified on August 31, 2026