Topremit
OPEN APITopremit
OPEN APITopremit
  1. QRIS
  • Open API
    • Virtual Account
      • Create Virtual Account
      • Inquiry Status Virtual Account
      • Virtual Account Callback
      • Cancel Virtual Account
      • Simulate Virtual Account Payment (Test Mode Only)
    • QRIS
      • Create QRIS
        POST
      • Inquiry QRIS
        POST
      • QRIS Callback
        POST
      • Simulate QRIS Payment (Test Mode Only)
        POST
    • Fetch Access Token
      POST
  1. QRIS

Inquiry QRIS

Developing
POST
/pg/snap/v1/qr/qr-mpm-query
Last modified:2025-05-19 04:51:19
This API Is used to get for the latest status, especially in user apps or admin dashboards waiting for confirmation.
Retrieve the current payment status of a QRIS transaction using its reference ID service code. This lets you check if the customer has completed the payment, or if the QR code has expired.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://staging-uno.topremit.com/pg/snap/v1/qr/qr-mpm-query' \
--header 'Authorization;' \
--header 'CHANNEL-ID;' \
--header 'X-TIMESTAMP;' \
--header 'X-SIGNATURE;' \
--header 'X-PARTNER-ID;' \
--header 'X-EXTERNAL-ID;' \
--header 'Content-type:  application/json' \
--data-raw '{
    "originalPartnerReferenceNo": "string",
    "originalReferenceNo": "string",
    "serviceCode": "string"
}'
Response Response Example
{
    "responseCode": "string",
    "responseMessage": "string",
    "originalPartnerReferenceNo": "string",
    "originalReferenceNo": "string",
    "serviceCode": "string",
    "latestTransactionStatus": "string",
    "paidTime": "string",
    "amount": {
        "value": "string",
        "currency": "string"
    },
    "additionalInfo": {
        "paymentId": "string",
        "qrisInvoiceId": "string",
        "status": "string",
        "expiredDate": "string",
        "description": "string",
        "createdAt": "string"
    }
}

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Previous
Create QRIS
Next
QRIS Callback
Built with