Transaction Details and Status

Query transaction outcomes directly from Core API for operational dashboards, support tooling, and reconciliation.

Check one transaction

{
  "transaction": "pi_3RxExample123"
}

Endpoint: POST /v1/transaction/status

{
  "status": 200,
  "transactionStatus": "paid",
  "transactionStatusReason": "Transaction successfully completed",
  "info": "",
  "transaction": {
    "transactionId": "pi_3RxExample123",
    "transactionStatus": "paid",
    "statusReason": "Transaction successfully completed",
    "licenseId": "lic_abc123",
    "productId": "prod_8c9a1d74",
    "amount": 49.99,
    "currency": "USD",
    "email": "buyer@example.com",
    "timestamp": "2026-05-11T07:01:00.000Z",
    "paymentProvider": "stripe"
  }
}

Check batch transactions

POST /v1/transactions
{
  "transactionsId": ["pi_3RxExample123", "np_45Example678"],
  "limits": "week"
}

Status mapping

  • paid โ€” completed and license is active
  • pending โ€” payment/license still pending
  • canceled โ€” revoked/cancelled lifecycle state
  • rejected โ€” failed or invalid completion state