1. Delivery Orders
Gokoo Third-Party Integration API
  • En
    • Start Readme Channel API Guide
    • Authentication
      • Channel Partner Authorization Login
      • Get Channel Partner AccessToken
      • Get Merchant OpenID
    • Product Management - Categories
      • Create Category
      • Edit Category
      • Delete Category
      • Get Category Detail
      • List Categories (Management)
      • List All Categories (For Product List)
      • Sort Categories
    • Merchant Management
      • Set delivery time
      • Business hours-set by day
      • Business hours setting
      • Modify business status
      • Set appointment days
      • Business hours management
    • Product Management - Products
      • Create Product
      • Edit Product
      • Delete Product
      • Get Product Detail
      • List Products
      • Search Products
      • Upload Product Image
      • Set Product On/Off Shelf (Batch)
      • Batch Update Product Stock
      • Batch Sold Out (Clear Stock)
      • Sort Products
    • Delivery Orders
      • Accept Order
        POST
      • Cancel Order (Merchant Reject)
        POST
      • Mark Food Ready (Prepared)
        POST
      • Apply for Delivery / Merchant Start Self-Delivery
        POST
      • Merchant Self-Delivery Completed
        POST
      • Query Order by Pickup Code
        POST
      • Verify Pickup Order (Scan Code)
        POST
      • List Orders (By Status)
        POST
      • Get Order Detail
        POST
      • Get Order Financial Details
        POST
      • Reprint Receipt
        POST
      • Order financial details-for Thailand
        POST
      • Order financial details-for Malaysia
        POST
    • Webhooks
      • Order Status Change Callback
  • 中文
    • 接口说明 v1.0
    • 商品管理
      • 商品排序
      • 全部分类(商品列表用)
      • 添加分类
      • 分类管理列表
      • 删除分类
      • 商品图片上传
      • 商品上下架(含批量)
      • 分类详情
      • 添加商品
      • 商品列表(搜索)
      • 商品批量改库存
      • 删除商品
      • 商品详情
      • 修改商品
      • 商品批量沽清
      • 分类排序
      • 商品列表
      • 修改分类
    • 商户管理
      • 营业时间——按天设置
      • 设置配送时间
      • 营业时间设置
      • 修改营业状态
      • 营业时间管理
      • 设置预约天数
    • 账户部分
      • 渠道商授权获取AccessToken
      • 渠道商授权获取商户openid
      • 渠道商授权登录
    • 外卖订单
      • 重新打印小票
      • 订单状态变更回调
      • 扫码核销订单
      • 取消订单(商家拒单)
      • 自提码查询订单
      • 订单账目
      • 订单列表(各种状态的)
      • 订单详情
      • 订单财务明细-泰国
      • 订单财务明细-马来西亚
      • 沙箱-创建订单
      • 接单
      • 出餐
      • 申请配送_商家自己开始配送
      • 商家自配送完成
      • 沙箱-发送订单状态变更回调
  • Schemas
    • CommonBodyParams
    • CommonResponse
    • SuccessResponse
    • ErrorResponse
    • TimeSlot
    • TimeSlotWithSeconds
    • CategoryItem
    • ProductItem
    • NormSpec
    • NormGroup
    • OrderProduct
    • ShowButtons
    • StaffInfo
  1. Delivery Orders

Get Order Financial Details

POST
/api.php
Get the financial breakdown/accounting details of a specific order. Requires login.
order account
** Return parameter description **
parameter nametypedescription
data.itemsarrayAccount detail array
data.items.indexstringnumber
data.items.titlestringproject name
data.items.amountstringthe total amount of the project
data.items.gongshistringcalculation formula
data.items.itemsarraysubproject
data.items.items.titlestringSubproject name
data.items.items.amountintSub-project amount
data.currencystringcurrency symbol

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Header Params

Body Params application/x-www-form-urlencodedRequired

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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

🟢200
application/json
Successful response
Bodyapplication/json

Example
{
    "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
Previous
Get Order Detail
Next
Reprint Receipt
Built with