Standing Order Status Updated

standing_order.status.updated

This webhook triggers when a Standing Order has changed state. This includes successful and failed standing order events.

Event Message

The table below describes the structure of the event.

FieldDescriptionValues
eventThe state change recordedpayment.success, payment_failed
payment_idThe payment identifier for this event
serviceThe service for the payment type this is related todomestic-standing-order
user_idThe user identifier this event relates to

Examples

{
  "data": {
    "event": "payment.success",
    "payment_id": "89f80199-1199-400e-9092-17208f6f39f5",
    "service": "domestic-standing-order",
    "user_id": "22f80199-1199-400e-9092-17208f6f39f0",
  }
}
{
  "data": {
    "event": "payment.failed",
    "payment_id": "89f80199-1199-400e-9092-17208f6f39f5",
    "service": "domestic-standing-order",
    "user_id": "22f80199-1199-400e-9092-17208f6f39f0",
  }
}