Singapay Home Page
Logo Icon
  1. QRIS (Money In)
  2. QRIS - Show

Information

MethodPathFormatAuthentication
GET/api/v1.0/qris-dynamic/{account_id}/show/{qris_id}jsonOAuth 2.0 with Access Token

Request Details

Headers Structure

FieldValueTypeMandatoryLengthDescriptionExample
X-PARTNER-IDapi_keyAlphanumericMandatoryAPI key obtained from the merchant dashboard.b3ed7d4b-a96c-6c08-b3c7-12c3124242d9
Acceptapplication/jsonAlphabeticMandatorySpecifies JSON as the expected response format.application/json
AuthorizationBearer {bearerToken}AlphanumericMandatoryBearer token obtained from the get access token endpoint.Bearer eyJ0eXAiOiJKV1{…}

Response Details

Response Structure

FieldTypeMandatoryLengthDescriptionExample
statusNumericMandatory3HTTP Status Code200
successBooleanMandatory12xx is true, 4xx-5xx is falsetrue
dataObjectConditionalTransaction object
> idNumericMandatoryAccount ID1
> reff_noStringMandatoryReference Number6601K5WZG32XJB5RSZB80XC9E2MC
> merchant_reff_noString/NullOptionalMerchant reference number for tracingINV-2026-001
> statusStringMandatoryTransaction statusopen
> typeStringMandatoryTransaction typempm-dynamic
> amountNumericMandatoryTransaction amount100000
> total_amountNumericMandatoryTotal amount (amount)100000
> qr_dataStringMandatoryQRIS Data String000201010212…
> expired_atStringMandatoryExpiration datetime (Y-m-d H:i:s)2025-09-24 12:25:00
> created_atStringMandatoryCreation datetime (Y-m-d H:i:s)2025-09-24 11:25:23
> has_settleBooleanMandatoryIndicates whether the transaction has been settledtrue
> settle_atString/NullOptionalSettlement datetime (Y-m-d H:i:s)2025-09-24 13:25:00

Response Example

Success: Here’s an example of a successful response.

{
    "status": 200,
    "success": true,
    "data": {
        "id": 1,
        "reff_no": "6601K5WZG32XJB5RSZB80XC9E2MC",
        "merchant_reff_no": "INV-2026-001",
        "status": "open",
        "type": "mpm-dynamic",
        "amount": 100000,
        "total_amount": 100000,
        "qr_data": "00020101021226570015ID.SINGAPAY.WWW01110509190001802122183098102390303UMI51440014ID.CO.QRIS.WWW02157434441747371980303UMI52047299530336054061000005802ID5923PT Tarsius Trusty Tahir6007Jakarta6105924396253051017586879230703C0108286601K5WZG32XJB5RSZB80XC9E2MC6304DCCC",
        "expired_at": "2025-09-24 12:25:00",
        "created_at": "2025-09-24 11:25:23",
        "has_settle": true,
        "settle_at": "2025-09-24 13:25:00"
    }
}