蜜桃视频
  • 蜜桃社 - 追剧交友两不误,年轻人的互动追更基地
  • Getting Started
    • 新91网页版 - 全新界面升级,海量影视资源免安装在线看
    • 牛奶片库 - 全网影视资源聚合平台|电影、电视剧、动漫一网打尽!
  • Basics
    • 抖音黑料曝光!今日黑料、热门网红黑料一网打尽 | 黑料网今日吃瓜、黑料社区全网首发
    • 今日最新黑料、独家爆料:24小时不间断更新,揭秘娱乐圈、商业圈、社会热点背后的真相
    • 91在线免费观看 - 91网最新影视资源 - 91网页版观看电影 - 91网首页精选内容
    • 黑料社 - 黑料不打烊、吃瓜爆料与黑料正能量平台 - hlw黑料网站娱乐爆料精选内容
    • 电影天堂 - 最新全集电视剧爽剧 | 热播高清电影免费在线看精选内容
    • 红桃影视网页版/红桃tv92/红桃影视网.tv红桃皇后视频/红桃影视大全:丰富的影视资源,在线播放不等待!
Powered by GitBook
On this page
  1. Basics

电影天堂 - 最新全集电视剧爽剧 | 热播高清电影免费在线看精选内容

Previous 黑料社 - 黑料不打烊、吃瓜爆料与黑料正能量平台 - hlw黑料网站娱乐爆料精选内容Next红桃影视网页版/红桃tv92/红桃影视网.tv红桃皇后视频/红桃影视大全:丰富的影视资源,在线播放不等待!

You can sync GitBook pages with an OpenAPI or Swagger file or a URL to include auto-generated API methods in your documentation.

OpenAPI block

GitBook's OpenAPI block is powered by , so you can test your APIs directly from your docs.

Scalar
  • OpenAPI block
  • POSTAdd a new pet to the store.

Add a new pet to the store.

post

Add a new pet to the store.

Authorizations
Body
idinteger · int64OptionalExample: 10
namestringRequiredExample: doggie
photoUrlsstring[]Required
statusstring · enumOptional

pet status in the store

Possible values:
Responses
200
Successful operation
400
Invalid input
422
Validation exception
default
Unexpected error
post
POST /api/v3/pet HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 133

{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}
{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}