List order IDs by date
GET/listOrders
Retrieve order IDs filtered by time period, based on purchase date or last modification date. One date range filter must be specified (either by purchase date or by last update date) with both a start and end date required. All dates must be in ISO 8601 standard (YYYY-MM-DD).
Request
Query Parameters
dateFrom string
Start date of purchase date range filter.
dateTo string
End date of purchase date range filter.
lastUpdateFrom string
Start date of last update date range filter.
lastUpdateTo string
End date of last update date range filter.
Responses
- 200
- application/json
- Schema
- Example (from schema)
- Example
Schema
orderIds string[]
Resulting list of order IDs.
{
"orderIds": [
"string"
]
}
{
"orderIds": [
"BAGABAG",
"BAGABAM"
]
}
Loading...