Loading...

Game

Place Order

[POST] https://osimesa.id/api/game

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
data1 string check fields on get service for details. No
data2 string check fields on get service for details. No
data3 string check fields on get service for details. No
Example Response
{
    "code": 200,
    "data": {
        "data": [
            "your input data 1",
            "your input data 2",
            "your input data 3"
        ],
        "note": "transaction note",
        "price": 10000,
        "ref_id": "some1d",
        "status": "waiting",
        "product": {
            "code": "product_id",
            "slug": "product_slug",
            "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/game

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 input data 1",
                "your input data 2",
                "your input data 3"
            ],
            "note": "transaction note",
            "price": 10000,
            "ref_id": "some1d",
            "status": "waiting",
            "product": {
                "code": "product_id",
                "slug": "product_slug",
                "service": "product_name"
            },
            "voucher": "voucher_code",
            "created_at": 1737573418,
            "updated_at": 1737573418
        }
    ],
    "status": true,
    "message": "Success."
}

Get Service

[POST] https://osimesa.id/api/game

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": {
                "main": "Kuota Indosat",
                "slug": "kuota-indosat"
            },
            "fields": {
                "title": "Masukkan Data",
                "info": "",
                "field1": {
                    "type": "input",
                    "input": {
                        "type": "tel",
                        "label": "Masukkan Nomor HP",
                        "minlength": 0,
                        "maxlength": 1000,
                        "placeholder": ""
                    },
                    "select": {
                        "label": "",
                        "options": [],
                        "placeholder": ""
                    }
                },
                "field2": {
                    "type": "none",
                    "input": {
                        "type": "text",
                        "label": "",
                        "minlength": 0,
                        "maxlength": 0,
                        "placeholder": ""
                    },
                    "select": {
                        "label": "",
                        "options": [],
                        "placeholder": ""
                    }
                },
                "field3": {
                    "type": "none",
                    "input": {
                        "type": "text",
                        "label": "",
                        "minlength": 0,
                        "maxlength": 0,
                        "placeholder": ""
                    },
                    "select": {
                        "label": "",
                        "options": [],
                        "placeholder": ""
                    }
                }
            },
            "name": "Indosat Freedom Internet 18 GB 28 Hari",
            "note": "Freedom Internet 18GB,28 Hari",
            "code": "IFI18",
            "price": {
                "list": {
                    "standar": 62550,
                    "premium": 62350,
                    "spesial": 62200
                },
                "current": 62050
            },
            "cutoff": {
                "start": "00:00",
                "end": "00:00"
            },
            "status": "ready",
            "updated_at": 1735257616
        },
        {
            "category": {
                "main": "Kuota XL",
                "slug": "kuota-xl-axiata"
            },
            "fields": {
                "title": "Masukkan Data",
                "info": "",
                "field1": {
                    "type": "input",
                    "input": {
                        "type": "tel",
                        "label": "Masukkan Nomor HP",
                        "minlength": 0,
                        "maxlength": 1000,
                        "placeholder": ""
                    },
                    "select": {
                        "label": "",
                        "options": [],
                        "placeholder": ""
                    }
                },
                "field2": {
                    "type": "none",
                    "input": {
                        "type": "text",
                        "label": "",
                        "minlength": 0,
                        "maxlength": 0,
                        "placeholder": ""
                    },
                    "select": {
                        "label": "",
                        "options": [],
                        "placeholder": ""
                    }
                },
                "field3": {
                    "type": "none",
                    "input": {
                        "type": "text",
                        "label": "",
                        "minlength": 0,
                        "maxlength": 0,
                        "placeholder": ""
                    },
                    "select": {
                        "label": "",
                        "options": [],
                        "placeholder": ""
                    }
                }
            },
            "name": "XL Xtra Combo Flex XL",
            "note": "Xtra Combo Flex XL",
            "code": "XCFXL",
            "price": {
                "list": {
                    "standar": 91324,
                    "premium": 91124,
                    "spesial": 90974
                },
                "current": 90824
            },
            "cutoff": {
                "start": "23:00",
                "end": "01:00"
            },
            "status": "empty",
            "updated_at": 1732053611
        }
    ],
    "status": true,
    "message": "Success."
}