PetApi

getPetById

GET: /pet.{format}/{petId}

parameter param type data type response type Description
petId
required
path string* Pet ID of pet that needs to be fetched

addPet

POST: /pet.{format}

parameter param type data type response type Description
body
required
body Pet* - Pet object that needs to be added to the store

updatePet

PUT: /pet.{format}

parameter param type data type response type Description
body
required
body Pet* - Pet object that needs to be updated in the store

findPetsByStatus

GET: /pet.{format}/findByStatus

parameter param type data type response type Description
status
required
query string* List[Pet] Status values that need to be considered for filter

findPetsByTags

GET: /pet.{format}/findByTags

parameter param type data type response type Description
tags
required
query string* List[Pet] Tags to filter by