Get Webhook

get/v1/subscriptions/webhooks/{webhook_id}

Returns a single webhook subscription by id. Read only, no side effects. Scoped to the authenticated workspace.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
webhook_idstring <uuid>YesUUID of the webhook subscription.e.g. c47e2f81-9b3a-4d6e-8f10-2a5b7c9d1e3f

Request

cURL
curl -X GET https://api.wellapp.ai/v1/subscriptions/webhooks/{webhook_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

200The webhook subscription.

{
  "data": {
    "type": "webhook",
    "id": "c47e2f81-9b3a-4d6e-8f10-2a5b7c9d1e3f",
    "attributes": {
      "event": "document.processed",
      "target_url": "https://foldspace.ai/webhooks/well",
      "headers": {
        "X-Foldspace-Token": "fold_7c1e9a"
      },
      "active": true,
      "created_at": "2026-06-07T14:22:05.000Z",
      "updated_at": "2026-06-07T15:01:44.000Z"
    }
  }
}

401Missing or invalid bearer token.

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404No webhook subscription exists with the supplied id.

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}