Order
Properties
| Name | Type | Required | Example / Values |
|---|---|---|---|
| object | |||
| id | integer (int64) | optional | Example: 10 |
| petId | integer (int64) | optional | Example: 198772 |
| quantity | integer (int32) | optional | Example: 7 |
| shipDate | string (date-time) | optional | Example: "2024-01-15T10:30:00Z" |
| status | string | optional | placedapproveddelivered |
Order Status | |||
| complete | boolean | optional | Example: false |
Example
{
"id": 10,
"petId": 198772,
"quantity": 7,
"shipDate": "2024-01-15T10:30:00Z",
"status": "approved",
"complete": false
}Used In
POST
/store/orderGET
/store/order/{orderId}