Type payin
This notification is sent when the payment status changes.
Contents of the data object
| Name | Type | Description |
|---|---|---|
id | integer | Payment ID in our system |
order_id | string | Payment ID in your system |
amount | number | Payment amount |
currency | string | Payment currency |
status | string | Payment status |
Webhook example
json
{
"type": "payin",
"data": {
"id": 123456,
"order_id": "ORDER-789",
"amount": 100.50,
"currency": "USD",
"status": "success"
},
"salt": "a9f3c2d8e4b1",
"sign": "d41d8cd98f00b204e9800998ecf8427e"
}