roboformdesk
  • Welcome
  • Getting Started
    • Quickstart
    • Publish your docs
  • Basics
    • Editor
    • Markdown
    • Images & media
    • Interactive blocks
    • OpenAPI
    • Integrations
  • 11 Ways To Connect Roboform Customer Service By Phone
  • How Do I Talk To A Real Person on "Roboform Customer Service"?
  • Does Roboform Have 24 Hour Customer Service Everything
  • Ways To Call Roboform Customer Service Via Phone Email
  • How To Contact Roboform Customer Service Via Email A Comprehensive Guide
  • How To Get The Best Out of "Roboform Customer Service"
  • How Do I "Login Roboform Account"? A Simple Guide
  • How Do I "Sign in Roboform Account"? A Simple Guide
  • How Do I "Sign in Roboform Account"? A Complete Guide
  • How To Sign in To Your Roboform Account And Manage Security
  • My Roboform Login Access Your Account And Manage Security
  • 15 Smart Ways to Communicate Roboform Customer Service by Phone, Chat, E-mail: A Full Explained
  • Contact "Roboform Customer Service": Phone Number, Help Center, and More
  • 21 Ways to Reach Roboform Customer Service by Phone, Email or Chat Live Support
  • How Do I Reach Roboform Customer Care? A Comprehensive Guide
  • Call Roboform Support for Quick Troubleshooting Steps
  • How Do I Roboform Account Sign In & Set Up?
  • Sign In - Official Site | Roboform Account Sign In & Set Up
  • RoboForm Sign In Account: Secure Your Data Easily Access
  • How Do I Access My RoboForm Login Account Anywhere?
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"
}