Get webhooks

Get all subscription webhooks

Use this webhook query to retrieve all webhooks for an installed application. This query will only retrieve webhooks associated with the specific installed application.

Example query

query {
    viewer {
        installedApplication {
            webhooks {
                id
                url
                events
                disabledAt
            }
        }
    }
}