Order Detail

This API will show you about detail of order

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

Query Params

NameTypeDescription

orderId

String

Your Order id

merchantId

String

Your merchantID

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": {
        "order_id": "1708421337490",
        "product_name": "Mobile Legends Diamonds",
        "denom_name": "185 Diamonds",
        "qty": 1,
        "price": 0,
        "total_order_amount": 108,
        "customer_phone_number": "",
        "validation_user_response": {
            "username": 123456,
            "validation_token": "VT1708416745Y1f1"
        },
        "checker_response": null,
        "order_status": "pending",
        "created_at": "0001-01-01T00:00:00Z"
    }

Last updated