๐Ÿ”ฅ
Exploratory Data Analysis (EDA)
WebsiteGithub
  • ๐Ÿ‘‹Welcome!
  • Course Content
    • 1. Introduction
      • EDA: Uncovering Insights and Patterns
      • Why EDA?
      • Importance of EDA
      • The role of EDA in the data analysis process
      • A Comprehensive Examination
      • Code & Practice
      • Basic Concept
    • 2. Fundamentals
      • Lifecycle
        • Data Science
        • EDA
    • 3. Dataset Selection and Understanding
      • Kaggle
      • Github
    • 4. Data Cleaning and Preprocessing
    • 5. Techniques and Approaches
      • Types of EDA
    • 6. Data Visualization
    • 7. Statistical Measures and Hypothesis Testing
    • 9. Case Studies
    • 11. Best Practices and Tips for Effective EDA
    • 12. Future Trends and Emerging Technologies
  • Dataset
    • โ„น๏ธKaggle
  • Tools and Software
    • โœจData Analysis Tools
    • ๐ŸPython Library
      • ๐ŸผPandas
      • ๐ŸงŠNumpy
      • ๐Ÿ“ŠMatplotlib
      • ๐Ÿ“ˆSeaborn
      • ๐Ÿ“ถPlotly
      • ๐ŸคนSciPy
      • ๐Ÿ’ซStatsmodels
      • ๐Ÿ‘‚Scikit-learn
      • ๐Ÿ—ณ๏ธYellowbrick
    • โ›๏ธPython tools
    • ยฎ๏ธยฎ ยฎ ยฎ The R Project
    • ๐ŸŒ€Data Exploration
    • ๐ŸŽฏData Quality
    • ๐Ÿ“”Data Profiling
    • ๐Ÿ“บVisualization
  • Tech Exploration
    • ๐ŸŽฌYoutube
    • โ˜๏ธGithub
    • ๐Ÿ”ฌLab
    • ๐Ÿ’ผCase Study
  • Reference
    • API Reference
      • Pets
      • Users
      • Quick Start
Powered by GitBook
On this page
  1. Reference
  2. API Reference

Users

PreviousPetsNextQuick Start

Last updated 1 year ago

Good to know: All the methods shown below are synced to an example Swagger file URL and are kept up to date automatically with changes to the API.

User actions

Creating users

Logs user into the system

get
Query parameters
usernamestringRequired

The user name for login

passwordstringRequired

The password for login in clear text

Responses
200
successful operation
Responsestring
400
Invalid username/password supplied
get
GET /v2/user/login HTTP/1.1
Host: petstore.swagger.io
Accept: */*
text

Logs out current logged in user session

get
Responses
default
successful operation
get
GET /v2/user/logout HTTP/1.1
Host: petstore.swagger.io
Accept: */*
default

successful operation

No content

  • User actions
  • GETLogs user into the system
  • GETLogs out current logged in user session
  • Creating users
  • POSTCreates list of users with given input array
  • POSTCreates list of users with given input array

Creates list of users with given input array

post
Body
idinteger ยท int64Optional
usernamestringOptional
firstNamestringOptional
lastNamestringOptional
emailstringOptional
passwordstringOptional
phonestringOptional
userStatusinteger ยท int32Optional

User Status

Responses
default
successful operation
post
POST /v2/user/createWithList HTTP/1.1
Host: petstore.swagger.io
Content-Type: application/json
Accept: */*
Content-Length: 128

[
  {
    "id": 1,
    "username": "text",
    "firstName": "text",
    "lastName": "text",
    "email": "text",
    "password": "text",
    "phone": "text",
    "userStatus": 1
  }
]
default

successful operation

No content

Creates list of users with given input array

post
Body
idinteger ยท int64Optional
usernamestringOptional
firstNamestringOptional
lastNamestringOptional
emailstringOptional
passwordstringOptional
phonestringOptional
userStatusinteger ยท int32Optional

User Status

Responses
default
successful operation
post
POST /v2/user/createWithArray HTTP/1.1
Host: petstore.swagger.io
Content-Type: application/json
Accept: */*
Content-Length: 128

[
  {
    "id": 1,
    "username": "text",
    "firstName": "text",
    "lastName": "text",
    "email": "text",
    "password": "text",
    "phone": "text",
    "userStatus": 1
  }
]
default

successful operation

No content