Prepaid
Place Order
[POST] https://mail.osimesa.id/api/prepaid
| Parameter | Type | Note | Req. |
|---|---|---|---|
| key | string |
fill with your API Key. | Yes |
| sign | string |
fill with combined User ID and API Key encrypted with md5. | Yes |
| type | string |
fill with order to place order. | Yes |
| service | string |
fill with Service ID that you want to order. | Yes |
| data_no | string |
fill with Phone Number or Other Data. | Yes |
Example Response
{
"code": 200,
"data": {
"data": [
"your destination number"
],
"note": "transaction note",
"price": 10000,
"ref_id": "some1d",
"status": "waiting",
"product": {
"code": "product_id",
"type": "product_type",
"service": "product_name"
},
"voucher": "voucher_code"
},
"status": true,
"message": "Thank you for purchasing the product, please wait for the transaction to be processed."
}
Check Transaction
[POST] https://mail.osimesa.id/api/prepaid
| Parameter | Type | Note | Req. |
|---|---|---|---|
| key | string |
fill with your API Key. | Yes |
| sign | string |
fill with combined User ID and API Key encrypted with md5. | Yes |
| type | string |
fill with status to place order. | Yes |
| ref_id | string |
fill with Transaction Reference ID. | No |
| limit | integer |
fill with 1 - 15. | No |
Example Response
{
"code": 200,
"data": [
{
"data": [
"your destination number"
],
"note": "transaction note",
"price": 10000,
"ref_id": "some1d",
"status": "waiting",
"product": {
"code": "product_id",
"type": "product_type",
"service": "product_name"
},
"voucher": "voucher_code",
"created_at": 1785037210,
"updated_at": 1785037210
}
],
"status": true,
"message": "Success."
}
Get Service
[POST] https://mail.osimesa.id/api/prepaid
| Parameter | Type | Note | Req. |
|---|---|---|---|
| key | string |
fill with your API Key. | Yes |
| sign | string |
fill with combined User ID and API Key encrypted with md5. | Yes |
| type | string |
fill with service to place order. | Yes |
Example Response
{
"code": 200,
"data": [
{
"category": {
"type": "paket-internet",
"main": "AXIS",
"sub": "Owsem"
},
"multi": "1",
"name": "OWSEM 3 GB + 9 GB 4G \/ 30 Hari",
"note": "BRONET 4G OWSEM 3GB+9GB(4G)+12GB Aplikasi, 24 jam 30HR",
"code": "OW4",
"price": {
"list": {
"standar": 61975,
"premium": 61775,
"spesial": 61625
},
"current": 61975
},
"cutoff": {
"start": "23:30",
"end": "00:15"
},
"status": "empty",
"updated_at": 1770949624
},
{
"category": {
"type": "voucher-game",
"main": "LEAGUE OF LEGENDS WILD RIFT",
"sub": "Umum"
},
"multi": "1",
"name": "League Of Legends Wild Rift 700 Wild Cores",
"note": "Masukkan Riot Id Anda + Tag. Buka halaman profil akun dan salin Riot ID+Tag menggunakan tombol yang tersedia disamping Riot ID. (Contoh: contohriotid#SEA)",
"code": "WR700",
"price": {
"list": {
"standar": 77460,
"premium": 77260,
"spesial": 77110
},
"current": 77460
},
"cutoff": {
"start": "00:00",
"end": "00:00"
},
"status": "empty",
"updated_at": 1730759328
}
],
"status": true,
"message": "Success."
}