Webhooks
List webhooks
Get all of the webhooks in your workspace.
Required scopes: webhook:read.
get/v2/webhooks
Query parameters
limitinteger
The maximum number of results to return, between 10 and 100, defaults to 10. See the full guide to pagination here.
Example:10
offsetinteger
The number of results to skip over before returning, defaults to 0. See the full guide to pagination here.
Example:5
Response
Success
Example response
{
"data": [
{
"target_url": "https://example.com/webhook",
"subscriptions": [
{
"event_type": "note.created"
}
],
"id": {
"workspace_id": "14beef7a-99f7-4534-a87e-70b564330a4c",
"webhook_id": "23e42eaf-323a-41da-b5bb-fd67eebda553"
},
"status": "active",
"created_at": "2023-04-27T13:22:49.061281000Z"
}
]
}