91网
  • 91网官网新发布页|91|91网|91网页|91网页版|91.tv|91网页浏览器|91高清|91官网|91网官方网站|91首页|91网站|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影视
  • Basics
    • 91|91网|新91大黄| 新91 网页 版 新91 网页版免费91 网页版91 免费91 网页 免费91 黑料网91 黑料网 黑料91 好色tv|91网址|91电脑版官网
    • 91网站版 91网站| 91网页新地址 91网页版影视视频网站精彩影视一网打尽meile31 github io 91网页版 91网页 91网外网 91网浏览器 91网 education
    • 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"
}