Profile
POST: https://brianzstore.com/api/profile
| Parameter | Type | Value | Req. |
| key | string | berisi apikey anda. | Yes |
| sign | string | md5(API ID + API KEY) | Yes |
{
"result": true,
"data": {
"username": "miyabi",
"balance": 9999,
"level": "resseler",
"registered": "2023-05-15 10:21:15"
},
"message": "Successfully got your account details."
}
Service
POST: https://brianzstore.com/api/service
| Parameter | Type | Value | Req. |
| key | string | berisi apikey anda. | Yes |
| sign | string | md5(API ID + API KEY) | No |
| filter_type | string | type / brand | No |
| filter_value | string | tipe atau brand | No |
| filter_status | string | available / empty | No |
{
"result": true,
"data": {
"code": "ML86",
"category": "MOBILE LEGENDS",
"name": "86 Diamond",
"type": "Games",
"price": {
"guest": 23000,
"member": 20000,
"reseller": 15000
},
"varian": "Membership",
"status": "available / empty",
"update_at": "2025-05-01 11:13:17"
},
"message": "Daftar layanan berhasil didapatkan."
}
Order
POST: https://brianzstore.com/api/order
| Parameter | Type | Value | Req. |
| key | string | berisi apikey anda. | Yes |
| sign | string | md5(API ID + API KEY) | Yes |
| service | string | kode layanan | Yes |
| target | string | Contoh: 1234|123 | Yes |
{
"result": true,
"data": {
"order_id": "BS123123123",
"data": "123456|1234",
"code": "ML86",
"service": "86 Diamond",
"status": "process",
"note": "Berhasil dibayar",
"price": 20000
},
"message": "Pesanan berhasil, pesanan akan diproses."
}
Status
POST: https://brianzstore.com/api/status
| Parameter | Type | Value | Req. |
| key | string | berisi apikey anda. | Yes |
| sign | string | md5(API ID + API KEY) | Yes |
| order_id | string | ID pesanan | Yes |
| limit | integer | berisi limit transaksi, hapus parameter 'order_id' jika ingin melihat banyak transaksi sekaligus. | No |
{
"result": true,
"data": {
"order_id": "BS123123123",
"data": "123456 - 1234",
"code": "ML86",
"service": "86 Diamond",
"status": "pending, process, error, system, success",
"note": "Berhasil dibayar",
"price": 20000
},
"message": "Detail transaksi berhasil didapatkan."
}
Webhook
POST: urlcallback.com
| Header | Value |
| Content-Type | application/json |
| Parameter | Type | Value |
| order_id | string | BSxxxxxx |
| data | string | xxxxxx |
| service | string | service |
| status | string | success / error |
| note | string | sn-xxxxxx |
| price | integer | 10000 |
{
"order_id": "BSxxxxxx",
"data": "xxxxxx",
"service": "service",
"status": "success / error",
"note": "sn-xxxxxx",
"price": 10000
}