pockaqakytink
  1. store
pockaqakytink
  • Start your Apidog journey
  • Descargar pdf ESCUCHA A TU INTUICIÓN
  • pet
    • Find pet by ID
      GET
    • Finds Pets by status
      GET
    • Finds Pets by tags
      GET
    • uploads an image
      POST
    • Add a new pet to the store
      POST
    • Update an existing pet
      PUT
    • Updates a pet in the store with form data
      POST
    • Deletes a pet
      DELETE
  • store
    • Returns pet inventories by status
      GET
    • Place an order for a pet
      POST
    • Find purchase order by ID
      GET
    • Delete purchase order by ID
      DELETE
  • user
    • Creates list of users with given input array
      POST
    • Get user by user name
      GET
    • Update user
      PUT
    • Delete user
      DELETE
    • Logs user into the system
      GET
    • Logs out current logged in user session
      GET
    • Creates list of users with given input array
      POST
    • Create user
      POST
  1. store

Place an order for a pet

POST
/store/order
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/store/order' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
200 - Example 1
{
    "id": 44524671,
    "petId": 90180021,
    "quantity": 23,
    "shipDate": "2025-08-15",
    "status": "placed",
    "complete": false
}

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
successful operation
Body

🟠400Bad Request
Modified at 2025-08-22 00:44:21
Previous
Returns pet inventories by status
Next
Find purchase order by ID
Built with