Skip to main content
POST
/
miniapp
/
payments
/
status
Get Payment Statuses
curl --request POST \
  --url https://api.example.com/miniapp/payments/status \
  --header 'Content-Type: application/json' \
  --data '
{
  "initData": "<string>",
  "payments": [
    {
      "method": "<string>",
      "localPaymentId": 123,
      "paymentLinkId": "<string>",
      "invoiceId": "<string>",
      "paymentId": "<string>",
      "payload": "<string>",
      "amountKopeks": 123,
      "startedAt": "<string>"
    }
  ]
}
'
{
  "results": [
    {
      "method": "<string>",
      "status": "<string>",
      "is_paid": false,
      "amount_kopeks": 123,
      "currency": "<string>",
      "completed_at": "2023-11-07T05:31:56Z",
      "transaction_id": 123,
      "external_id": "<string>",
      "message": "<string>",
      "extra": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.bedolagam.ru/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
initData
string
required
payments
MiniAppPaymentStatusQuery · object[]

Response

Successful Response

results
MiniAppPaymentStatusResult · object[]