STELLA N5
  • STELLA N5 USER MANUAL
  • 관련 홈페이지
  • IdeaRobot Gitbook
  • STELLA N5 사양
    • 치수 및 외관
    • 제원
    • 블록도
    • 주요부품
    • SBC 구성 요소
  • 구성품
  • STELLA N5 조립 방법
    • STELLA N5 파트리스트
    • 배선도
    • 조립 및 배선
  • STELLA N5 관련 설정
    • 원격 PC 설정 - ROS2
    • Raspberry Pi 설정 - ROS2
    • 매개변수(Parameter) 설정
  • STELLA N5 작동
    • STELLA N5 구동
    • STELLA N5 SLAM
    • STELLA N5 Navigation2
  • STELLA N5 부록
    • 안드로이드 앱을 이용하여 STELLA N5 구동
    • 모터 드라이버 환경 설정
    • 모터 게인 확인 및 수정
    • STELLA Hailo ROS2 패키지
  • STELLA N5 추후 업데이트 예정
    • STELLA N5 Gazebo
    • AP 모드
  • AP 이용 Pi Wifi 설정
  • 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"
}