webhookRequest
QUERY

The webhook request for the given requestId.

Arguments

Name
Description
requestId* 
String!
The request ID.This is included in the HTTP request as an X-Request-Id custom header.
schemeId* 
String!
The scheme ID of the WebhookSubscription that generated the request.This is used to determine which data source includes the requestId.Currently, only seekAnz and seekAnzPublicTest are supported.

Result

Name
Description
An HTTP request to a WebhookSubscription.HTTP requests are associated with one or more WebhookAttempts representing each Event in the request body.

Sample

GraphQL
query ($requestId: String!, $schemeId: String!) {
  webhookRequest(requestId: $requestId, schemeId: $schemeId) {
    latencyMs
    requestId
  }
}