List and Track Webhook Event Attempts

This endpoint empowers merchants with the ability to retry failed attempts. When a webhook event fails to deliver successfully, merchants can initiate a retry through this endpoint, ensuring that critical notifications are not missed. This functionality is vital for maintaining the reliability and effectiveness of the webhook system, allowing merchants to promptly address delivery issues and ensure that their systems receive the necessary updates and alerts.

By offering the retry capability, this endpoint provides a robust mechanism for merchants to manage and troubleshoot their webhook deliveries. They can analyze the failure patterns, understand the reasons behind unsuccessful attempts, and take corrective actions. This proactive approach to managing webhook notifications ensures a higher success rate for event deliveries and enhances the overall reliability of the notification system.

POST/webhooks/webhook_events/{id}/send
Sandbox: https://api.payiano.dev/v1/webhooks/webhook_events/{id}/send
Live: https://api.payiano.com/v1/webhooks/webhook_events/{id}/send
Security
  • Authorization header with access token is required to access this endpoint: Bearer ACCESS-TOKEN
  • Your access token should be associated to this permission webhook_events_send
Request
Request body schema:
application/json
Path parameters:
id
required
Type: ulid
Length: 26

The unique ID assigned to each webhook event which is generated by our system using the ULID format. Each ID is precisely 26 characters long, ensuring a unique and consistent identifier for every webhook event. This ULID is automatically created by our system and is used to uniquely identify and track each webhook event in our database.

Response
200
Response schema:
application/json
Response body:
status
Type: boolean

This value indicates whether the sending of the webhook event was successful or not.

Response sample:
1
{
2 "status": true 3}