Ojire Payment Gateway
  1. QRIS
Ojire Payment Gateway
  • Registrasi SNAP di OJIRE Payment Gateway
  • Otentikasi API
    • Public Key dan Private Key
    • Bearer Token
    • Signature
  • Auth
    • Get Token API
      POST
  • Virtual Account
    • Create VA
      POST
    • Update VA
      PUT
    • Inquiry VA
      POST
    • Delete VA
      DELETE
    • Callback VA
      POST
  • QRIS
    • Generate QR MPM
      POST
  • Payment Link
    • Create Payment Link
      POST
    • Inquiry Payment Link
      POST
    • Method Payment Link
      POST
    • Pay Payment Link
      POST
  • Account
  1. QRIS

Generate QR MPM

Developing
SANDBOX
http://api.sandbox.opg.ojire.com
SANDBOX
http://api.sandbox.opg.ojire.com
POST
http://api.sandbox.opg.ojire.com
/v1.0/qr/qr-mpm-generate

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://api.sandbox.opg.ojire.com/v1.0/qr/qr-mpm-generate' \
--header 'X-Timestamp: 2025-06-06T00:03:09+07:00' \
--header 'X-Partner-Id: OPGXXXXXXXXXX' \
--header 'X-External-Id: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX' \
--header 'Channel-Id: CIMB' \
--header 'Authorization: Bearer v2.local.ABC.DEF.HIJ' \
--header 'X-Signature: ABCDEFG==' \
--header 'Content-Type: application/json' \
--data-raw '{
    "partnerReferenceNo": "3dc1f1e4b07e",
    "amount": {
        "value": "18.00",
        "currency": "IDR"
    },
    "feeAmount": {
        "value": "0.00",
        "currency": "IDR"
    },
    "merchantId": "000008158688335",
    "terminalId": "QA538101",
    "additionalInfo": {
        "expiredDate": "2022-10-18T23:27:43+0700"
    }
}'
Response Response Example
{
    "responseCode": "2004700",
    "responseMessage": "Request has been processed successfully",
    "referenceNo": "2020102977770000000009",
    "partnerReferenceNo": "2020102900000000000001",
    "qrContent": "xxxxxxxxxxxxxxxx",
    "merchantName": "Baso Malang",
    "terminalId": "213141251124",
    "additionalInfo": {
        "expiredDate": "2022-10-18T23:27:43+0700"
    }
}
Previous
Callback VA
Next
Create Payment Link