91大事件
  • 「91大事件速递」全网热点·实时追踪 - 91看大事件权威发布
  • Getting Started
    • 91大事件|91网页版新发布页|91网页版|91|91网|91网页|91看网页版|91剧集|91电视剧|91官网|91网站|91网址|91电脑版官网|新91 网页 版|91首页|首页91|91影视|91影音|91影院
    • 91大事件|91网页版新发布页|91网页版|91|91网|91网页|91看网页版|91剧集|91电视剧|91官网|91网站|91网址|91电脑版官网|新91 网页 版|91首页|首页91|91影视|91影音|91影院
  • Basics
    • 91大事件|中国91网 新91网页版官网 新91网 新91视频 新91大黄 新91 网页 版 新91 网页版免费91 网页版91 免费91 网页 免费91|91官网|91网站|91网址|91电脑版官网
    • 91大事件|今日最新事件追踪|91看大事件官网|91事件网实时更新|91破人N的事件揭秘|91网浏览器 91网美剧 电影网91 91 网页 版 美剧网91 91看剧网官网 91剧集
    • Images & media
    • Interactive blocks
    • OpenAPI
    • Integrations
Powered by GitBook
On this page
  1. Basics

OpenAPI

PreviousInteractive blocksNextIntegrations

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"
}