Get Order Financial Details
Get the financial breakdown/accounting details of a specific order. Requires login.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/x-www-form-urlencodedRequired
Request Code Samples
curl --location --request POST '/api.php?API=biz/shop/finance/order_balance' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'CLIENT_API=' \
--data-urlencode 'openid=' \
--data-urlencode 'data={"order_id":"5283631"}'
Responses
{
"data": {
"items": [
{
"index": "string",
"title": "string",
"amount": "string",
"gongshi": "string",
"items": [
{
"title": "string",
"amount": "string"
}
]
}
],
"currency": "฿"
},
"error": "0",
"message": "success"
}
Modified at 2026-04-14 03:43:47