1. Delivery Orders
Gokoo Third-Party Integration API
  • Start Readme Channel API Guide
  • Authentication
    • Channel Partner Authorization Login
      GET
    • Get Channel Partner AccessToken
      GET
    • Get Merchant OpenID
      GET
  • Product Management - Categories
    • Create Category
      POST
    • Edit Category
      POST
    • Delete Category
      POST
    • Get Category Detail
      POST
    • List Categories (Management)
      POST
    • List All Categories (For Product List)
      POST
    • Sort Categories
      POST
  • Product Management - Products
    • Create Product
      POST
    • Edit Product
      POST
    • Delete Product
      POST
    • Get Product Detail
      POST
    • List Products
      POST
    • Search Products
      POST
    • Upload Product Image
      POST
    • Set Product On/Off Shelf (Batch)
      POST
    • Batch Update Product Stock
      POST
    • Batch Sold Out (Clear Stock)
      POST
    • Sort Products
      POST
  • 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
  • Webhooks
    • Order Status Change Callback
  • Schemas
    • CommonBodyParams
    • SuccessResponse
    • ErrorResponse
    • TimeSlot
    • TimeSlotWithSeconds
    • CategoryItem
    • ProductItem
    • NormSpec
    • NormGroup
    • OrderProduct
    • ShowButtons
    • StaffInfo
  1. Delivery Orders

List Orders (By Status)

POST
/api.php
Get order list filtered by various statuses. Requires login.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query 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 --request POST '/api.php?API=biz/waimai/neworder/order_list' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'CLIENT_API=' \
--data-urlencode 'openid=' \
--data-urlencode 'data={"status":"5","page":"1","lang":"null"}'

Responses

🟢200
application/json
Successful response
Body

Example
{
    "data": {
        "items": [
            {
                "order_id": "string",
                "shop_id": "string",
                "shop_title": "string",
                "pei_label": "string",
                "day_num": "string",
                "member_orders": "string",
                "order_status_label": "string",
                "pei_time_label": "string",
                "contact": "string",
                "mobile": "string",
                "addr": "string",
                "house": "string",
                "amount": "string",
                "intro": "string",
                "tableware_num": "string",
                "products_num": "string",
                "staff": {
                    "staff_id": "string",
                    "name": "string",
                    "mobile": "string",
                    "lng": "string",
                    "lat": "string"
                },
                "products": [
                    {
                        "basket_title": "string",
                        "product": [
                            {
                                "product_id": "string",
                                "product_name": "string",
                                "product_price": "string",
                                "package_price": "string",
                                "product_number": "string",
                                "amount": "string",
                                "unit": "string",
                                "specification": [
                                    {}
                                ],
                                "product_photo": "string",
                                "shop_sku": "string",
                                "old_product_number": "string"
                            }
                        ]
                    }
                ],
                "yuji_info": [
                    {
                        "key": "string",
                        "val": "string"
                    }
                ],
                "yuji_price": "string",
                "show_btn": {
                    "cancel": "string",
                    "jiedan": "string",
                    "setpei": "string",
                    "setSpend": "string",
                    "refuse": "string",
                    "agree": "string",
                    "makeProduct": "string",
                    "replyComment": "string",
                    "seeComment": "string",
                    "replyCui": "string",
                    "delivered": "string",
                    "service_agree": "string",
                    "service_refuse": "string",
                    "apply_make": "string",
                    "print_again": "string",
                    "user_im": "string",
                    "lack_goods": "string"
                }
            }
        ],
        "total_count": "string",
        "curr_page": "string",
        "pages": "string",
        "total": "string",
        "count_obj": {
            "wait_jiedan": "string",
            "wait_pei": "string",
            "cui": "string",
            "refund": "string",
            "ing": "string",
            "finished": "string",
            "cancelled": "string",
            "service": "string"
        }
    },
    "error": "0",
    "message": "success"
}
Modified at 2026-04-14 03:43:47
Previous
Verify Pickup Order (Scan Code)
Next
Get Order Detail
Built with