YoGateway adalah payment gateway pihak ketiga yang memudahkan integrasi pembayaran digital. Proses pendaftaran mudah, biaya murah, dan cocok untuk bisnis kecil hingga pengembang aplikasi yang ingin menerima pembayaran otomatis melalui QRIS.
Membuat QRIS pembayaran otomatis berdasarkan nominal.
GET https://yogateway.yotemp.web.id/api.php?action=createpayment
Parameter:
apikey – API key dari YoGatewayamount – Nominal pembayaran (contoh: 1000)Contoh Request:
curl "https://yogateway.yotemp.web.id/api.php?action=createpayment&apikey=demo123&amount=1000"
Contoh Response:
{
"provider": "YoGateway",
"status": true,
"result": {
"trxid": "YO-ABCD12",
"nominal": "1012",
"expired": "2025-10-15T05:49:31.799Z",
"qris_image": "https://img1.pixhost.to/images/9431/651336281_yogaasz.png"
}
}
Cek status pembayaran berdasarkan trxid unik.
GET https://yogateway.yotemp.web.id/api.php?action=checkstatus
Parameter:
trxid – ID transaksi dari hasil createpaymentContoh Request:
curl "https://yogateway.yotemp.web.id/api.php?action=checkstatus&trxid=YO-ABCD12"
Contoh Response:
{
"provider": "YoGateway",
"status": true,
"result": {
"trxid": "YO-ABCD12",
"amount": "1012",
"status": "SUCCESS",
"qris_image": "https://img1.pixhost.to/images/9431/651336281_yogaasz.png"
}
}
Coba langsung buat QRIS dan cek status transaksi Anda.
Response: