Get a webhook endpoint
GET
/v1/webhook-endpoints/{endpoint_id}Fetches a single webhook endpoint by id, scoped to the credential's organization. An id from another organization (or an unknown id) answers 404 `resource_not_found` — no cross-org existence oracle. Never includes the signing secret.
Required scopes
webhooks:read
Availability
Pro & Team plans
Quota cost
1 API call
Idempotency
Not applicable
Request
Path parameters
| Field | Type | Description |
|---|---|---|
endpoint_idrequired | string |
Response 200
The webhook endpoint.
Fields
| Field | Type | Description |
|---|---|---|
idrequired | string | Stable id of the endpoint. |
urlrequired | string | The https destination URL. |
enabledrequired | boolean | False when disabled — manually, or auto-disabled after repeated delivery failures (see `disabled_reason`). |
event_typesrequired | "task.created" | "task.updated" | "task.archived"[] | Subscribed event types. An EMPTY array means "every type". |
verifiedrequired | boolean | True once the `verify` action has proven this endpoint accepts a correctly-signed request. |
disabled_reasonrequired | string | null | Why the endpoint was auto-disabled, or null when never auto-disabled. |
created_atrequired | string (date-time) | ISO-8601 UTC. |
updated_atrequired | string (date-time) | ISO-8601 UTC. |
▸ ▾ Raw response schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Stable id of the endpoint."
},
"url": {
"type": "string",
"description": "The https destination URL."
},
"enabled": {
"type": "boolean",
"description": "False when disabled — manually, or auto-disabled after repeated delivery failures (see `disabled_reason`)."
},
"event_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WebhookEndpointEventType"
},
"description": "Subscribed event types. An EMPTY array means \"every type\"."
},
"verified": {
"type": "boolean",
"description": "True once the `verify` action has proven this endpoint accepts a correctly-signed request."
},
"disabled_reason": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Why the endpoint was auto-disabled, or null when never auto-disabled."
},
"created_at": {
"type": "string",
"format": "date-time",
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$",
"description": "ISO-8601 UTC."
},
"updated_at": {
"type": "string",
"format": "date-time",
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$",
"description": "ISO-8601 UTC."
}
},
"required": [
"id",
"url",
"enabled",
"event_types",
"verified",
"disabled_reason",
"created_at",
"updated_at"
],
"additionalProperties": false,
"description": "A webhook endpoint configuration — NEVER includes the signing secret (shown once, at creation/rotation)."
}Example request
curl
curl -X GET https://app.nowgetitdone.com/v1/webhook-endpoints/whep_a1b2c3 \
-H "Authorization: Bearer gid_YOUR_API_KEY"Possible errors
- 401
missing_credentialsMissing credentials - 401
invalid_api_keyInvalid API key - 401
invalid_tokenInvalid access token - 403
insufficient_scopeInsufficient scope - 403
feature_not_enabledFeature not enabled on this plan - 404
resource_not_foundResource not found - 429
rate_limitedRate limit exceeded - 429
quota_exhaustedPlan quota exhausted - 500
internal_errorInternal server error