# Place an order for a pet Place a new order in the store Endpoint: POST /store/order Version: 1.0.20-SNAPSHOT ## Request fields (application/json): - `id` (integer) Example: 10 - `petId` (integer) Example: 198772 - `quantity` (integer) Example: 7 - `shipDate` (string) - `status` (string) Order Status Enum: "placed", "approved", "delivered" - `complete` (boolean) ## Response 200 fields (application/json): - `id` (integer) Example: 10 - `petId` (integer) Example: 198772 - `quantity` (integer) Example: 7 - `shipDate` (string) - `status` (string) Order Status Enum: "placed", "approved", "delivered" - `complete` (boolean)