PUT /pet

Update an existing pet.

POST /pet

Add a new pet to the store.

GET /pet/findByStatus

Finds Pets by status.

status

Status values that need to be considered for filter

GET /pet/findByTags

Finds Pets by tags.

GET /pet/{petId}

Find pet by ID.

POST /pet/{petId}

Updates a pet in the store with form data.

DELETE /pet/{petId}

Deletes a pet.

POST /pet/{petId}/uploadImage

Uploads an image.

GET /store/inventory

Returns pet inventories by status.

POST /store/order

Place an order for a pet.

GET /store/order/{orderId}

Find purchase order by ID.

DELETE /store/order/{orderId}

Delete purchase order by identifier.

POST /user

Create user.

POST /user/createWithList

Creates list of users with given input array.

GET /user/login

Logs user into the system.

GET /user/logout

Logs out current logged in user session.

GET /user/{username}

Get user by user name.

PUT /user/{username}

Update user resource.

DELETE /user/{username}

Delete user resource.