Place an order for a pet
/store/order
Place a new order in the store
Body Parameters
id: optional number
complete: optional boolean
petId: optional number
quantity: optional number
shipDate: optional string
Returns
Place an order for a pet
curl https://petstore3.swagger.io/api/v3/store/order \
-X POST \
-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"
}