黑料网
  • 黑料不打烊 - 全网热点爆料实时追踪,吃瓜第一线!
  • Getting Started
    • 吾爱导航官网入口 - 海量影视资源,畅享高清观影体验
    • 午夜福利在线 - 最新热门影视资源免费观看
  • Basics
    • Netflix中下载电影 - 轻松离线观看您喜爱的影视内容
    • 桃子影院免费网站 - 海量高清影视资源免费观看
    • hsck仓库视频 - 海量影视资源,畅享高清观影体验
    • 欧美免费MV大片人人 - 高清音乐视频在线观看
    • 一起看app下载 - 海量影视资源,随时随地畅享高清视频
    • 轩廷慧琳影视视频网站 - 海量影视资源,畅享视听盛宴
Powered by GitBook
On this page
  1. Basics

一起看app下载 - 海量影视资源,随时随地畅享高清视频

Previous欧美免费MV大片人人 - 高清音乐视频在线观看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"
}