Skip to main content
POST
/
miniapp
/
payments
/
status
Get Payment Statuses
curl --request POST \
  --url http://localhost:8080/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": {}
    }
  ]
}

Body

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

Response

Successful Response

results
MiniAppPaymentStatusResult · object[]