Skip to main content
POST /v2/payments/notifyCashierUrl Notification endpoint for cashier URL-related events. This webhook is called when there are updates to payment links or cashier page interactions.

Webhook Payload

paymentId
string
required
Payment identifier
paymentRequestId
string
required
Merchant payment request ID
cashierUrl
string
Updated cashier URL if applicable
status
string
required
Event status

Expected Response

{
  "result": {
    "resultCode": "SUCCESS",
    "resultStatus": "S",
    "resultMessage": "success"
  }
}

Example Webhook Payload

{
  "paymentId": "2024011012345678901234",
  "paymentRequestId": "LINK-20240110-001",
  "cashierUrl": "https://pay.rebellapp.com/c/abc123",
  "status": "CREATED"
}