webhookSubscription
QUERY

The webhook subscription for the given id.

Arguments

Name
Description
The value of WebhookSubscription.id for the requested object.

Result

Name
Description
A subscription for a given event type and scheme to be delivered via webhook.Events are delivered in batches with a HTTP POST request to the specified subscription URL.

Sample

GraphQL
query ($id: String!) {
  webhookSubscription(id: $id) {
    hirerId {
      value
    }
    id {
      value
    }
    schemeId
  }
}