黑料社
  • 今日黑料黑料:揭秘娱乐圈、网红圈最新爆料,独家内幕一网打尽
  • Getting Started
    • 黑料 黑料不打烊:24小时不间断更新,随时随地掌握最新八卦动态
    • 黑料黑料在线:实时更新娱乐圈、网红圈爆料,随时随地在线吃瓜
  • Basics
    • 黑料黑料社:深度挖掘娱乐圈、网红圈内幕,揭秘不为人知的背后故事
    • 黑料黑料吃瓜网:全网最全娱乐圈、网红圈爆料,吃瓜群众的必备神器!
    • 黑料网红网:揭秘网红圈最新爆料,深度剖析网红背后的故事与争议
    • 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"
}