Petso
  • WELCOME TO PETSO
    • Objective & Goals
    • Mission Statement
    • Statistics
    • Problem - What challenges are we addressing?
    • Benefits of a Blockchain-Enabled Pet App
    • Core Features and Functionalities
    • Privacy & Security
    • Expected Impact and Future Growth
    • Market & Customer Segment
    • Team
    • Roadmap & Milestones
    • Pet Ancestry Insights
    • Charity and Social Impact Initiatives (CSR)
    • Financials
    • Petso Revenue Model: Comprehensive Overview
    • Global Pet Registration and Information Sharing with Governments
  • Core Technology
    • Decentralized Identifier (DID)
    • Zero-Knowledge Proofs (ZKPs)
    • Artificial intelligence (AI)
    • Non-Fungible Token (NFT)
    • Blockchain and Digitisation: Transforming Tomorrow
    • Token & Reward System - Gamification
    • Staking, Governance & Voting
    • Voting Portal
  • Product Features
    • Birth Records & Ancestry DNA Data
    • Health Records and Tracking
    • Appointment Scheduling and Reminders
    • Health and Wellness Monitoring
    • Emergency Information
    • Ownership and Consent Management
    • Training and Behavioral Tracking
    • Social and Community Features
    • Educational Content and Resources
    • E-commerce and Product Recommendations - Marketplace
    • Integration with Wearable Devices
    • Pet AI Assistant
    • Pet Cemetery
    • Pet Investment Plan
    • Virtual Adoption
    • NFT-Driven Quest & Investor Reward Programme
  • Tokenomics
    • $PET Token Utility
    • $PET Token Allocations
    • $PET Token Analysis
    • Buy-Back and Reward Distribution Policy
  • 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"
}