Get Dynamic Webhooks For App

GET {{baseUrl}}/rest/api/3/webhook?startAt=0&maxResults=100

Returns a paginated list of the webhooks registered by the calling app.

Permissions required: Only Connect apps can use this operation.

Request Params

KeyDatatypeRequiredDescription
startAtnumberThe index of the first item to return in a page of results (page offset).
maxResultsnumberThe maximum number of items to return per page.

RESPONSES

status: OK

{"maxResults":2,"startAt":0,"total":100,"isLast":false,"values":[{"id":10000,"jqlFilter":"project = PRJ","events":["jira:issue_updated","jira:issue_created"],"expirationDate":"2019-06-01T12:42:30.000+0000"},{"id":10001,"jqlFilter":"issuetype = Bug","events":["jira:issue_created"],"expirationDate":"2019-06-01T12:42:30.000+0000"}]}