E-Wallet Top Up

📘

Note

  • Grab drivers IDPEL (accountNumber) are using vehicle registration number (plat nomor kendaraan).
    • On receipt of OVO top-up it is required to add this note
      ID: “SALDO OVO CASH ANDA AKAN DIPOTONG BIAYA ADMIN RP 2.000”. EN: “YOUR OVO CASH BALANCE WILL BE DEDUCTED WITH RP 2.000 ADMIN FEE”

Close amount

  • Inquiry
{
  "partnerId": "partner-id",
  "accountNumber": "081215474224",
  "productCode": "product-code"
}
{
  "success": true,
  "responseCode": 300,
  "message": {
    "ID": "Inkuiri berhasil",
    "EN": "Inquiry is successful"
  },
  "data": {
    "inquiryId": 8383992,
    "requestId": "162677119784848",
    "refNumber": 7468483,
    "accountNumber": "0812154224",
    "customerName": "TEST",
    "productName": "product-name",
    "productCode": "product-code",
    "category": "eMoney",
    "validity": "",
    "amount": 51300,
    "totalAdmin": 0,
    "customerDetails": [
      {
        "key": "Nama Pelanggan",
        "value": "TEST"
      },
      {
        "key": "Tanggal & Waktu Pembayaran",
        "value": "05 Jan 2021 | 16:42"
      },
      {
        "key": "Nomor HP",
        "value": "0812154224"
      }
    ],
    "billDetails": [
      {
        "key": "Harga Produk",
        "value": 51300,
        "billId": "1",
        "isMandatory": true,
        "billInfo": []
      },
      {
        "key": "Biaya Administrasi",
        "value": 0,
        "billId": "0",
        "isMandatory": true,
        "billInfo": []
      }
    ],
    "productDetails": [],
    "extraFields": []
  }
}

Open amount

  • Inquiry
{
  "partnerId": "partner-id",
  "accountNumber": "081215474224",
  "productCode": "product-code",
	"amount": 101500
}
{
  "success": true,
  "responseCode": 300,
  "message": {
    "ID": "Inkuiri berhasil",
    "EN": "Inquiry is successful"
  },
  "data": {
    "inquiryId": 8383992,
    "requestId": "162677119784848",
    "refNumber": 7468483,
    "accountNumber": "0812154224",
    "customerName": "TEST",
    "productName": "product-name",
    "productCode": "product-code",
    "category": "eMoney",
    "validity": "",
    "amount": 101500,
    "totalAdmin": 0,
    "customerDetails": [
      {
        "key": "Nama Pelanggan",
        "value": "TEST"
      },
      {
        "key": "Tanggal & Waktu Pembayaran",
        "value": "05 Jan 2021 | 16:42"
      },
      {
        "key": "Nomor HP",
        "value": "0812154224"
      }
    ],
    "billDetails": [
      {
        "key": "Harga Produk",
        "value": 51300,
        "billId": "1",
        "isMandatory": true,
        "billInfo": []
      },
      {
        "key": "Biaya Administrasi",
        "value": 0,
        "billId": "0",
        "isMandatory": true,
        "billInfo": []
      }
    ],
    "productDetails": [],
    "extraFields": []
  }
}

📘

Note

Payment Request using the same format for both Close and Open Amount (but different product code).

  • Payment
{
  "partnerId": "ayopop",
  "refNumber": "48438402",
  "accountNumber": "081212223192",
  "productCode": "AYOVO50",
  "amount": 51300,
  "inquiryId": 8383992
}
{
    "responseCode": 299,
    "success": true,
    "message": {
        "ID": "Transaksi sedang dalam proses",
        "EN": "Your transaction is processing"
    },
    "data": {
        "refNumber": "48438402",
        "transactionId": 48372060,
        "accountNumber": "081212223192",
        "amount": 51300,
        "totalAdmin": 2500,
        "processingFee": 0,
        "denom": "",
        "productCode": "AYOVO50",
        "productName": "GO-PAY (Konsumen) Rp 50.000",
        "category": "eMoney",
        "token": "",
        "customerDetails": [],
        "billDetails": [],
        "productDetails": [],
        "extraFields": []
    }
}
  • Status
{
  "success": true,
  "responseCode": 0,
  "message": {
    "ID": "Transaksi Anda Telah Berhasil",
    "EN": "Your transaction was successful"
  },
  "data": {
    "refNumber": 48438402,
    "transactionId": 48372060,
    "requestId": "162460689498790",
    "accountNumber": "081212223192",
    "customerName": "Ishan",
    "amount": 51300,
    "totalAdmin": 0,
    "productCode": "AYOVO50",
    "productName": "GO-PAY (Konsumen) Rp 50.000",
    "category": "eMoney",
    "validity": "",
    "token": "210709GM11643520",
    "customerDetails": [
      {
        "key": "Nama Pelanggan",
        "value": "Ishan"
      },
      {
        "key": "Tanggal & Waktu Pembayaran",
         "value": "05 Jan 2021 | 16:42"
       },
      {
        "key": "Nomor HP",
        "value": "081212223192"
      }
    ],
    "billDetails": [
      {
        "key": "Harga Produk",
        "value": 51300,
        "billId": "1"
      },
      {
        "key": "Biaya Administrasi",
        "value": 0,
        "billId": "0"
      }
    ],
    "productDetails": [
      {
        "key": "Serial Nomor",
        "value": "210709GM11643520"
      }
    ],
    "extraFields": []
}