My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • PDF EPUB Download The Wings Upon Her Back by Samantha Mills Full Book
  • PDF EPUB Download Mastering Magick A Course in Spellcasting for the Psychic Witch by Mat Auryn Silv
  • PDF DOWNLOAD Interior Chinatown by Charles Yu on Iphone
  • pdf download Happy Mothers Day from the Crayons by Drew Daywalt Oliver Jeffers
  • epub download Vendetta Luckys Revenge by Jackie Collins
  • Download PDF Bitter and Sweet A Novel by Rhonda McKnight
  • DOWNLOAD PDF EPUB West Hollywood Monster Squad A Graphic Novel by Sina Grace Bradley Clayton
  • A Calamity of Souls by David Baldacci on Audiobook New
  • 2020 One City Seven People and the Year Everything Changed by Eric Klinenberg on Iphone New Format
  • Download PDF How to Have Your Best Year Ever Strategies for Growth Productivity and Happiness by J
  • PDF RHCSA Red Hat Enterprise Linux 9 Certification Study Guide Eighth Edition Exam EX200 by Michae
  • DOWNLOAD PDF EPUB Monstrilio by Gerardo Sámano Córdova
  • Longshadow by Olivia Atwater on Ipad
  • Pdf ePub The Angel of Indian Lake by Stephen Graham Jones download ebook
  • Read Pdf Fall of Ruin and Wrath by Jennifer L. Armentrout
  • download pdf Cooking and the Crown Royal Recipes from Queen Victoria to King Charles III A Cookboo
  • Read online Big Nate In the Zone by Lincoln Peirce
  • Read pdf The Locker Exchange by Ann Rae
  • DOWNLOAD PDF EPUB Outsmarting Egomaniacs How to Respond to Narcissists and Master Manipulators by
  • Seafood Simple A Cookbook by Eric Ripert on Audiobook New
  • Download PDF First Sticker Book Sparkly Fairies by Holly Bathie Katie Wood
  • Online Read Ebook Dinosaur Roar by Paul Stickland Henrietta Stickland
  • Online Read Ebook The Count of Monte Cristo by Alexandre Dumas
  • Download Pdf First Sticker Book Sparkly Fairies by Holly Bathie Katie Wood
  • download pdf A Condition Called Love 10 by Megumi Morino
  • Download Pdf Ditching Saskia by John Moore Neetols
  • PDF Download Big Swiss by Jen Beagin
  • PDF EPUB Download Momo Arashima Breaks the Mirror of the Sun by Misa Sugiura Full Book
  • pdf download Anatomy for 3D Artists The Essential Guide for CG Professionals by 3dtotal Publishing
  • epub download Killing Time An Agatha Raisin Mystery by M. C. Beaton R.W. Green
  • Read Pdf More Than Words How to Think About Writing in the Age of AI by John Warner
  • With a Little Luck by Marissa Meyer Chuck Gonzales on Iphone New Format
  • download pdf Thirty Million Words Building a Childs Brain by Dana Suskind
  • Read online Collided Deluxe Edition by Lauren Asher
  • Read online Universal Monsters Creature From the Black Lagoon Lives by Dan Watters Ram V Matthew R
  • PDF Kindle A Dutiful Boy A Memoir of Secrets Lies and Family Love by Mohsin Zaidi
  • PDF I Ship My Rival x Me The Comic Manhua Vol. 2 by PEPA Qualia
  • PDF Deaths End by Cixin Liu
  • Tea Magic Cozy Spells in a Cup by Chloé Zarka Grinsnir on Ipad
  • DOWNLOADS Dinghai Fusheng Records Novel Vol. 1 Special Edition by Fei Tian Ye Xiang Qian Er Bai
  • download pdf My Fault by Mercedes Ron
  • Download Pdf Do Angels Need Haircuts by Lou Reed Anne Waldman Laurie Anderson
  • DOWNLOADS See Me by Nicholas Sparks
  • Online Read Ebook Long Island by Colm Tóibín
  • Download Pdf Unlock your Mind by Marczell Klein
  • Download PDF Disney Mickey Lucky Mouse by Grace Baranowski
  • Read Pdf Guardian Zhen Hun Novel Vol. 2 by Priest Ying Marmaladica
  • Pdf ePub The Reprise of the Spear Hero Volume 10 The Manga Companion by Aneko Yusagi download ebook
  • AP Computer Science A Premium 12th Edition Prep Book with 6 Practice Tests Comprehensive Review O
  • PDF Download Seeking Wisdom From Darwin to Munger 3rd Edition by Peter Bevelin
  • Sample APIs
    • Find pet by ID
      GET
    • Add a new pet to the store
      POST
    • Update an existing pet
      PUT
    • Deletes a pet
      DELETE
    • Finds Pets by status
      GET
  1. Sample APIs

Add a new pet to the store

POST
/pet
pet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/pet' \
--data-urlencode 'name=Hello Kitty' \
--data-urlencode 'status=sold'
Response Response Example
{
    "code": 0,
    "data": {
        "name": "Hello Kitty",
        "photoUrls": [
            "http://dummyimage.com/400x400"
        ],
        "id": 3,
        "category": {
            "id": 71,
            "name": "Cat"
        },
        "tags": [
            {
                "id": 22,
                "name": "Cat"
            }
        ],
        "status": "sold"
    }
}

Request

Body Params application/x-www-form-urlencoded
name
string 
required
Pet Name
Example:
Hello Kitty
status
string 
required
Pet Sales Status
Example:
sold

Responses

🟢201OK
application/json
Body
code
integer 
required
>= 0<= 0
data
object (Pet) 
required
id
integer <int64>
required
Pet ID
>= 1
category
object (Category) 
required
group
name
string 
required
name
Example:
doggie
photoUrls
array[string]
required
image URL
tags
array[object (Tag) {2}] 
required
tag
status
enum<string> 
required
Pet Sales Status
Allowed values:
availablependingsold
Previous
Find pet by ID
Next
Update an existing pet
Built with