Get multiple order status
GET/?action=status
Response example
{
"1": {
"charge": "0.27819",
"start_count": "3572",
"status": "Partial",
"remains": "157",
"currency": "THB"
},
"10": {
"error": "Incorrect order ID"
},
"100": {
"charge": "1.44219",
"start_count": "234",
"status": "In progress",
"remains": "10",
"currency": "THB"
}
}
Request
Query Parameters
key stringrequired
API key
action stringrequired
status
orders stringrequired
Order IDs separated by comma
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
start_count int32
Start count of the order
remains int32
Remaining quantity
currency Currency (string)
Possible values: [THB
]
Default value: THB
charge float
Amount in THB.
status OrderStatus (string)
Possible values: [Pending
, Processing
, In progress
, Completed
, Partial
, Canceled
, Processed
, Failed
]
Order status
[
{
"start_count": 0,
"remains": 0,
"currency": "THB",
"status": "Pending"
}
]
Loading...