Order List

This API will show you list of orders

GET https://tokoapi-dev.netzme.com/public/api/ppob/v1/order/list?merchantId={merchantId}

Query Params

NameTypeDescription

merchantId

String

Your merchantID, eg: M_YDXabcd1

limit

String

limit of shown data

page

String

page of data

Headers

ParameterDescription

Content-Type

application/json

X-CLIENT-ID

Partner ClientId, eg Xersia01

X-TIMESTAMP

Epoch Time of the request, we will check it. The date of timestamp should be the date you request.

X-MSG-ID

Your unique request-id, eg: Random UUID

X-SIGNATURE

Transaction Signature, see page

X-AUTHORIZATION

Authorization token you get after hit Authentication Token

Example

{
    "requestId": "ed3f6763-b1bd-40e3-aecb-ddaa2c3a9775",
    "type": "DETAIL_ORDER",
    "status": 200,
    "statusMessage": "success",
    "body": {
        "items": [
            {
                "created_at": "2024-02-26T08:59:50.959052Z",
                "denom_name": "185 Diamonds",
                "order_id": "1708912790947",
                "product_name": "Mobile Legends Diamonds",
                "qty": 1,
                "status": "pending",
                "total_order_amount": 108,
                "updated_at": "2024-02-26T08:59:50.959052Z"
            },
            {
                "created_at": "2024-02-26T08:58:57.509424Z",
                "denom_name": "185 Diamonds",
                "order_id": "1708912737347",
                "product_name": "Mobile Legends Diamonds",
                "qty": 1,
                "status": "pending",
                "total_order_amount": 108,
                "updated_at": "2024-02-26T08:58:57.509424Z"
            },
            {
                "created_at": "2024-02-26T08:57:20.690599Z",
                "denom_name": "185 Diamonds",
                "order_id": "1708912640576",
                "product_name": "Mobile Legends Diamonds",
                "qty": 1,
                "status": "pending",
                "total_order_amount": 108,
                "updated_at": "2024-02-26T08:57:20.690599Z"
            }
        ],
        "total_items": 51
    }
}

Last updated