Witness4All Whitepaper
  • Welcome
  • Getting Started
    • Who am I?
    • Where you can Find me
  • Hive Witness Node
    • Details
    • Setup
    • Guides
    • Links and Resources
  • Ways to earn Crypto?
    • FreeCash
    • Cointiply
  • Blockchains
    • WAX Blockchain
      • My History and Accounts
      • Links and Articles
      • Games and Projects
        • Taco
        • Twitchy Tides
        • Gods Glory io
    • HIVE Blockchain
      • My Accounts and History
      • Articles and Links
      • Games and Projects
        • Splinterlands
          • Splinterlands Statistics
        • Rising Star
        • Crownrend
        • Apis Hive
        • Page 5
      • Posting on Hive Blockchain
        • Commands (bots)
        • Tags for Articles
        • Delegation to Earn Rewards
  • GitBook Guide Pages
    • Quickstart
    • Publish your docs
    • Editor
    • Markdown
    • Images & media
    • Interactive blocks
    • OpenAPI
    • Integrations
Powered by GitBook
On this page
  1. GitBook Guide Pages

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