91网
  • 91网官网新发布页|91|91网|91网页|91网页版|91.tv|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看网页版
  • Basics
    • 91大事件|中国91网 新91网页版官网 新91网 新91视频 新91大黄 新91 网页 版 新91 网页版
    • 今日最新事件追踪|91看大事件官网|91事件网实时更新|91破人N的事件揭秘|91网浏览器 91网美剧 电影网91
    • 91网大事件全收录:91黑料、91吃瓜、91爆料一网打尽 91大事件 - 91热点新闻 - 91爆料追踪 - 91黑料揭秘 - 最新91短视频
    • 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"
}