📄
API Documentation
  • Introduction
    • Authorization
    • Webhooks
    • Statuses
  • API Methods
    • Create payment
    • Create payout
    • Check status
    • Get balance
Powered by GitBook
On this page
  1. Introduction

Webhooks

We can send POST request to your server when payment or payout changes to approved or declined status.

Payload example:

{
    "amount": 22.22,
    "currency": "EUR",
    "order_id": "string",
    "description": "Payment approved",
    "status": 1,
    "status_transaction": "approved",
    "payment_id": 1000,
    "mask": "444444******4444",
    "terminal": 1,
    "rate": 38.00
}

Last updated 1 year ago