API showdown///
- Pet Store
Train Travel API
- Place an order for a pet
Returns pet inventories by status
Find purchase order by ID
Delete purchase order by ID
Place an order for a pet
Place a new order in the store
- Mock serverhttps://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order
- https://innovario.apishowdown.com/v3https://innovario.apishowdown.com/v3/store/order
- application/json
- application/xml
- application/x-www-form-urlencoded
curl -i -X POST \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/store/order \
-H 'Content-Type: application/json' \
-d '{
"id": 10,
"petId": 198772,
"quantity": 7,
"shipDate": "2019-08-24T14:15:22Z",
"status": "approved",
"complete": true
}'Response
{ "id": 10, "petId": 198772, "quantity": 7, "shipDate": "2019-08-24T14:15:22Z", "status": "approved", "complete": true }