en
  • Welcome
    • us
      • help
        • 17 Ways To Speak At Azamara Cruises Customer Service By Phone Number, Email, Or Chat: A Step By Step
        • 19 Ways To Speak At Azamara Cruises Customer Service By Phone Number, Email, Or Chat: A Step By Step
        • 21 Ways To Speak At Azamara Cruises Customer Service By Phone Number, Email, Or Chat: A Step By Step
        • 15 Ways To Speak At Azamara Cruises Customer Service By Phone Number, Email, Or Chat: A Step By Step
        • 13 Ways To Speak At Azamara Cruises Customer Service By Phone Number, Email, Or Chat: A Step By Step
        • 17 Ways To Request A Name Change At Azamara Cruises By Phone Number, Email, Or Chat: A Step By Step
        • 15 Ways To Change Passenger Name On Azamara Cruises Via Phone, Email, Or Chat: A Step By Step Guide
        • 19 Ways To Correct Name On Azamara Cruises Booking Through Phone Or Email: A Step By Step Guide
        • 13 Ways To Edit Traveler Name On Azamara Cruises With Support: A Step By Step Guide
        • 21 Methods To Fix Name On Azamara Cruises Ticket Using Phone Number Or Chat: A Step By Step Guide
        • 17 Ways To Learn About Azamara Cruises Drink Packages By Phone Number, Email, Or Chat: A Step By Ste
        • 15 Ways To Upgrade Or Modify Azamara Cruises Drink Packages Via Phone, Email, Or Chat: A Step By Ste
        • 19 Ways To Purchase Azamara Cruises Beverage Packages Using Phone, Email, Or Chat: A Step By Step Gu
        • 13 Ways To Customize Your Drink Package On Azamara Cruises With Support: A Step By Step Guide
        • 21 Options To Talk About Drink Packages With Azamara Cruises Support: A Step By Step Guide
  • Getting Started
    • Quickstart
    • Publish your docs
  • Basics
    • Editor
    • Markdown
    • 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: 
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"
}