Get Order Financial Details
Get the financial breakdown/accounting details of a specific order. Requires login.** Return parameter description **| parameter name | type | description |
|---|
| data.items | array | Account detail array |
| data.items.index | string | number |
| data.items.title | string | project name |
| data.items.amount | string | the total amount of the project |
| data.items.gongshi | string | calculation formula |
| data.items.items | array | subproject |
| data.items.items.title | string | Subproject name |
| data.items.items.amount | int | Sub-project amount |
| data.currency | string | currency symbol |
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 '/api.php?API=biz%2Fshop%2Ffinance%2Forder_balance' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'CLIENT_API=' \
--data-urlencode 'CLIENT_API=BIZ' \
--data-urlencode 'openid=' \
--data-urlencode 'openid={{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-21 02:30:07