蘑菇视频
  • 蘑菇视频 - 海量影视资源随心看,热门剧集电影一网打尽
  • Getting Started
    • 蘑菇视频 - 蘑菇视频 - ios - 海量影视资源,随时随地畅享精彩!
    • 蘑菇视频 - - 免费观看最新影视剧集,尽在蘑菇视频 - 网站官方入口
  • Basics
    • 蜜桃视频 - 蜜桃TV登录入口首页 - 畅享海量影视资源,轻松追剧无压力
    • 蜜桃视频 - 日本床上蜜桃 - 探索日式浪漫与激情的影视天堂!
    • 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: 
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"
}