Webhooks
Partner can receive notifications for payment/order status change. Send your webbook URL to your account manager. We will send our key for JWT data validation. Payload for payments:
{
"transaction_key": "123456",
"type": "Invoice",
"data": "JWT"
}
Data structure in JWT is the same as response from Payment status
Payload for buy orders:
{
"order_key": "123456",
"type": "ExchangeOrder",
"data": "JWT"
}
Data structure in JWT is the same as response from Buy order status
Last updated