Prepaid
Place Order
[POST] https://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://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": 1774527037,
"updated_at": 1774527037
}
],
"status": true,
"message": "Success."
}
Get Service
[POST] https://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": "Bronet"
},
"multi": "1",
"name": "Axis Data BRONET 13 GB \/ 30 Hari",
"note": "-",
"code": "BR10",
"price": {
"list": {
"standar": 50500,
"premium": 50300,
"spesial": 50120
},
"current": 50500
},
"cutoff": {
"start": "23:29",
"end": "00:30"
},
"status": "empty",
"updated_at": 1711103224
},
{
"category": {
"type": "pulsa-transfer",
"main": "TRI",
"sub": "Pulsa Transfer"
},
"multi": "1",
"name": "Three Pulsa Transfer 75.000",
"note": "Pulsa Transfer",
"code": "TPT755",
"price": {
"list": {
"standar": 74175,
"premium": 73975,
"spesial": 73825
},
"current": 74175
},
"cutoff": {
"start": "23:30",
"end": "00:15"
},
"status": "ready",
"updated_at": 1739975229
}
],
"status": true,
"message": "Success."
}