POST
/
webhooks
/
{webhook_id}
/
events
/
{event_id}
curl --request POST \
  --url https://api.live.paisr.tech/{version}/webhooks/{webhook_id}/events/{event_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhook_id
string
required

The Webhook ID.

event_id
string
required

The Event ID.

Response

200
application/json
Successfully processed event.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.