Find purchase order by ID
/store/order/{orderId}
For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions.
Path Parameters
orderId: number
Returns
Find purchase order by ID
curl https://petstore3.swagger.io/api/v3/store/order/$ORDER_ID \
-H "api_key: $PETSTORE_API_KEY"
{
"id": 10,
"complete": true,
"petId": 198772,
"quantity": 7,
"shipDate": "2019-12-27T18:11:19.117Z",
"status": "approved"
}Returns Examples
{
"id": 10,
"complete": true,
"petId": 198772,
"quantity": 7,
"shipDate": "2019-12-27T18:11:19.117Z",
"status": "approved"
}