OBJECT

WebhookTestResponse

The result of a test webhook send attempt. Contains the success state, status code, and response body.

link GraphQL Schema definition

  • type WebhookTestResponse {
  • # Will be true if the operation succeeded.
  • success: Boolean!
  • # The HTTP status code of the response.
  • status_code: Int!
  • # The response body of the webhook test.
  • response: String!
  • }

link Require by