updateWebhookSubscriptionSigningConfiguration
MUTATION

Updates an existing webhook subscription's signing configuration.This modifies fields related to the signature of an existing webhook subscription. Changes may take up to half an hour to take effect.

Arguments

Name
Description
The details of the webhook subscription to be updated.

Result

UpdateWebhookSubscriptionSigningConfigurationPayload
Name
Description
webhookSubscription* 
WebhookSubscription!
The details of the updated webhook subscription.

Sample

GraphQL
mutation ($input: UpdateWebhookSubscriptionSigningConfigurationInput!) {
  updateWebhookSubscriptionSigningConfiguration(input: $input) {
    webhookSubscription {
      hirerId {
        value
      }
      id {
        value
      }
      schemeId
    }
  }
}