logo
On this page

Get user by user name

GET

https://petstore.swagger.io/v2/user/:username

Request

Path Parameters

    username stringrequired

    The name that needs to be fetched. Use user1 for testing.

Responses

successful operation
Schema
    id int64
    pet object
    oneOf
    id object
    category Category
    id int64

    Category ID

    name string

    Possible values: non-empty

    Category name

    sub object
    Test Sub Category
    prop1 string

    Dumb Property

    name stringrequired

    The name given to a pet

    photoUrls url[]required

    Possible values: <= 20

    The list of URL to a cute photos featuring pet

    friend circular(Pet)
    tags Tag[]required
    Possible values: >= 1
    Tags attached to the pet
  • Array[
  • id object
    name string

    Possible values: non-empty

    Tag name

  • ]
  • status string

    Possible values: [available, pending, sold]

    Pet status in the store

    petType string
    Possible values: [cat, dog, bee]
    Type of a pet
    huntingSkill stringrequired

    Possible values: [clueless, lazy, adventurous, aggressive]

    Default value: lazy

    The measured skill for hunting

    username string

    Possible values: >= 4 characters

    User supplied username

    firstName string

    Possible values: non-empty

    User first name

    lastName string

    Possible values: non-empty

    User last name

    email email

    User email address

    password password

    Possible values: >= 8 characters, Value must match regular expression /(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])/

    User password, MUST contain a mix of upper and lower case letters, as well as digits

    phone string

    Possible values: Value must match regular expression /^\+(?:[0-9]-?){6,14}[0-9]$/

    User phone number in international format

    userStatus int32

    User status


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

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

On this page

Back to top