Skip to content

Query a Pay-Out Order

The Request paramters :

FieldMeaningTypeRequired
app_idYour Merchant IDStringTrue
order_snuploaded in Create request paramtersStringTrue
signmd5_hash, refer to: SignatureStringTrue

The Response

FieldMeaningTypeRequired
status1 means the order is paid
0 means this order is failed
5 means this order is processing, please wait, finally all orders will end with status =1 or 0
IntegerTrue
msgorder message, it is helpful when you get a callback with status==0StringTrue
data.moneyThe amount deducted from your balance.StringTrue

Sample Response Json

json
{
    "status":1, // 1 means this order has been paid successfully , 0 means not paid
    "msg":"ok", // when a request is failed, please read msg to find out why
    {
        "data":{
            "money":5000 // The money your client actually paid, times 100x
        }
    }
}

Thanks for choosing LG Payment