v1

latestOpenAPI 3.1.1Productboard Proprietary2026-07-2453178243.2 KB
webhooks

Get webhook subscription

Returns a single webhook subscription by ID.

OAuth2 isolation: returns 404 if the subscription was created by a different OAuth2 application or by a public API access token (existence is masked for security).

get/webhooks/{webhookId}

Path parameters

webhookIdstring uuid required
Example:550e8400-e29b-41d4-a716-446655440000

UUID of the webhook subscription.

Response

Webhook subscription details

Example response

{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "type": "webhook",
    "createdAt": "2024-01-15T10:30:00.000Z",
    "fields": {
      "name": "Feature changes webhook",
      "notification": {
        "url": "https://example.destination.com/webhooks-handler",
        "version": 1
      }
    },
    "links": {
      "self": "https://api.productboard.com/v2/webhooks/550e8400-e29b-41d4-a716-446655440000"
    }
  }
}