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

Check status

Check status

POST <HOST_URL>/api/payment/status

Headers

Name
Type
Description

credential*

String

Request Body

Name
Type
Description

order_id

String

ID of transaction in your system. Required if payment_id not provided.

payment_id

Number

ID of transaction in our system. Required if order_id not provided.

{
    "status": 1,
    "status_transaction": "processing",
    "order_id": "string",
    "amount": 22.22,
    "currency": "EUR",
    "description": "Payment processing",
    "payment_id": 1000
}

Last updated 6 months ago