contact
  • Welcome
  • Getting Started
    • Quickstart
    • Publish your docs
  • Basics
    • Editor
    • Markdown
    • Images & media
    • Interactive blocks
    • OpenAPI
    • Integrations
  • en-us
    • help
      • Southwest Airlines™ Hotline ℗ +1-888-829-1117 | Talk To Agent Anytime
      • Contact Southwest® Airlines™ live representative (+1-888-(829)-1117)
      • Southwest® Airlines Customer® Service®: +1-888-829-1117
      • Southwest℗ Airlines© Helpline®: 1-888-829-1117
      • Southwest ® Airlines Contact Us: ( (1-888-829-1117))
      • 15 Ways to Reach How can I speak to someone at Southwest Airlines: A Step by Step Guide
      • How to Get in Touch with Someone at Southwest Airlines: A Step-by-Step Contact Guide
      • 12 Ways to Speak to Someone at Southwest Airlines® Through Contact Options A Step by Step Guide
      • Ways to Reach How Can I Speak to Someone at Southwest Airlines: A Step-By-Step Comprehensive Guide
      • 16 Ways to Call Southwest Airlines Customer Service Via Phone, Email, or Chat Options: Step by Step Guide
      • 23 Ways to Reach How Can I Speak to Someone at Southwest Airlines: A Step-By-Step Guide
      • 7 Ways to Get a Live Human on Southwest Airlines for Customer Services Phone, Email, and Chat
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"
}