黑料网
  • 「黑料不打烊」- 全网热瓜24小时实时追踪-吃瓜爆料每日更新
  • Getting Started
    • 糖心aboutas - 最新影视资源一网打尽,畅享高清观影体验
    • 虫虫漫画入口 - 畅享海量漫画与影视资源
  • Basics
    • 国产裸体美女在线 - 高清无码视频免费观看
    • 桃色花视频 - 最新热门影视剧在线观看平台
    • 桥本香菜最新影视作品在线观看 - 高清完整版免费下载
    • 向日葵影视视频网站 - 海量影视资源,畅享高清视听盛宴
    • 宅男天堂秋叶原 - 探索二次元与科技的交汇点
    • 弄潮高干免费看漫画 - 畅享海量漫画资源,随时随地免费阅读
Powered by GitBook
On this page
  1. Basics

宅男天堂秋叶原 - 探索二次元与科技的交汇点

Previous向日葵影视视频网站 - 海量影视资源,畅享高清视听盛宴Next弄潮高干免费看漫画 - 畅享海量漫画资源,随时随地免费阅读

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: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
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"
}