logo
On this page

Updates a pet in the store with form data

POST

https://petstore.swagger.io/v2/pet/:petId

Request

Path Parameters

    petId int64required

    ID of pet that needs to be updated

Body

    name string

    Updated name of the pet

    status string

    Updated status of the pet

Responses

Invalid input

Authorization: oauth2

name: petstore_authtype: oauth2scopes: write:pets,read:petsdescription: Get access to data while protecting your account credentials.
OAuth2 is also a safer and more secure way to give you access.
flows: {
  "implicit": {
    "authorizationUrl": "http://petstore.swagger.io/api/oauth/dialog",
    "scopes": {
      "write:pets": "modify pets in your account",
      "read:pets": "read your pets"
    }
  }
}

1
Copied!
Request
Collapse all
Base URL
https://petstore.swagger.io/v2
Default server
Auth
Bearer Token
Parameters
pathrequired
Body
RESPONSEClear

Click the "Send" button above and see the response here!

On this page

Back to top