The default values for parameters are as follows:
- PageSize: 10
- PageNumber: 0
- Order: "desc"
- OrderBy: "orderId"
- shopOrderStatus: "5"
- includeDeleted: false
- subOrderBy: null
- subOrder: "desc"
curl -i -X POST \
https://sandbox.bikeflights.com/api/Order/get-shop-orders \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"pageSize": 10,
"pageNumber": 0,
"orderDirection": "DESC",
"orderBy": "orderId",
"shopOrderStatus": 5,
"includeDeleted": false
}'
No response example
curl -i -X POST \
https://sandbox.bikeflights.com/api/Order/create-shop-order \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"requestId": "string",
"rateSignature": "string",
"purchaseOrder": "string"
}'