webhooks
List webhook subscriptions
Returns all webhook subscriptions for the workspace. Returns up to 100 items per page by default.
Paginated using cursor-based pagination. Follow links.next in the response to fetch the next page. When links.next is null, you have reached the last page.
OAuth2 isolation: OAuth2 access tokens only see subscriptions created by the same OAuth2 application. Public API access tokens see all workspace subscriptions.
get/webhooks
Query parameters
pageCursorstring
Cursor for pagination. Use the value from links.next to fetch the next page.
Response
A paginated list of webhook subscriptions
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"
}
}
]
}