resend_webhook_event
Resend a web hook event.
Input fields
sentera_id (
ID!)
Webhook Event ID.
Return fields
attempts (
Int!)
The amount of attempts this webhook event has been sent to the registered HTTP endpoint.
created_at (
ISO8601DateTime!)
Date and time this event was created.
payload (
WebhookEventPayload!)
The response payload from this webhook event being sent via HTTP POST.
sentera_id (
ID!)
A system-generated key identifying a specific instance of a webhook event.
status (
WebhookEventStatus!)
The status of this webhook event.
triggering_object_id (
ID!)
The ID of the object that triggered the webhook event to be sent.
type (
WebhookEventType!)
The type of this webhook event.
Examples
Resend Webhook Event
Resends a webhook event
Try this example in GraphiQLmutation ResendWebhookEvent {
resend_webhook_event(
sentera_id: "rul414j_WE__CV_deve_8995b58b8_220131_085259"
) {
sentera_id
}
}
{
"data": {
"resend_webhook_event": {
"sentera_id": "rul414j_WE__CV_deve_8995b58b8_220131_085259"
}
}
}