API Reference
Libraries
API Overview
Pets
Update an existing pet
PUT/pet
Add a new pet to the store
POST/pet
Finds Pets by status
GET/pet/findByStatus
Finds Pets by tags
GET/pet/findByTags
Find pet by ID
GET/pet/{petId}
Updates a pet in the store with form data
POST/pet/{petId}
Deletes a pet
DELETE/pet/{petId}
uploads an image
POST/pet/{petId}/uploadImage
Store
Returns pet inventories by status
GET/store/inventory
StoreOrders
Place an order for a pet
POST/store/order
Find purchase order by ID
GET/store/order/{orderId}
Delete purchase order by ID
DELETE/store/order/{orderId}
Users
Create user
POST/user
Creates list of users with given input array
POST/user/createWithList
Logs user into the system
GET/user/login
Logs out current logged in user session
GET/user/logout
Get user by user name
GET/user/{username}
Update user
PUT/user/{username}
Delete user
DELETE/user/{username}