React Template
React Template
React Template
  • ๐Ÿ Welcome
  • ๐Ÿš€Getting Started
    • ๐Ÿ“˜Introduction
    • โœ…Requirements
    • โšกQuickstart
  • โœจCore Features
    • ๐Ÿ”งPre-configured Tools
      • ๐ŸŽจESLint & Prettier
      • ๐ŸชHusky & Git Hooks
      • ๐Ÿ–Œ๏ธTailwind CSS Setup
      • โš’๏ธRedux Integration
      • ๐ŸคTemplate Structure
    • ๐Ÿ“ฆReusable Components
      • ๐Ÿ“ฆContainer
      • ๐Ÿ’ชFlex
      • ๐Ÿ”ฒBlock
      • Add more here
  • ๐Ÿ”Advanced Guides
    • ๐ŸŽš๏ธCustomizing the Template
    • ๐ŸŒ—Theming
    • ๐Ÿš€Performance Optimization
  • ๐Ÿ’กExamples & Use Cases
    • ๐Ÿ–ผ๏ธPortfolio Template
    • ๐Ÿ“ŠDashboard
    • โœ”๏ธTo-Do App
  • ๐Ÿ”ŒAPIs & Integrations
    • ๐ŸŒREST API Examples
  • โ“FAQ & Support
    • ๐Ÿ“‚FAQs
    • ๐Ÿ“‚Changelog
    • ๐ŸคContribute
Powered by GitBook
On this page
  1. Core Features
  2. Reusable Components

Flex

PreviousContainerNextBlock

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