My Project
  1. Sample APIs
My Project
  • Start your Apidog journey
  • télécharger pdf La vie des dinosaures
  • TÉLÉCHARGER PDF EPUB Campus drivers Tome 5
  • PDF Mias Passion téléchargement
  • Télécharger PDF Verlassene Mütter verlassene Töchter - Handbuch für eine Versöhnung
  • Lire en ligne First down T2 - Breakaway
  • Télécharger PDF Chien du heaume
  • PDF Kindle Tremori... - Cathy Merlin 4 par Cristina Rebiere
  • téléchargement epub Les couleurs - Le jardin
  • téléchargement epub Jamais plus
  • téléchargement pdf Un jugement hâtif - Espion et agent secret 3
  • Télécharger Pdf Iconic Icons Pictograms in Design Today
  • Pdf ePub Enjoying Mr. Hardwood par Christine Gray téléchargement ebook
  • Kindle Histoire de Mme de la Pommeraye téléchargement
  • téléchargement epub Tough Girls - Saison 1- Romance New Adult français
  • PDF Verity téléchargement
  • PDF Play it Again par Aidan Wayne
  • télécharger pdf Femmes criminelles
  • Kindle Devils wolf Tome 3 téléchargement
  • Pdf ePub Rêver le progrès - 5 nouvelles danticipation par Fabien Clavel Isabelle Périer télécharg
  • Télécharger PDF From Jerk to Perk - The Me to We Reverse Harem Romances 3
  • TÉLÉCHARGEMENTS Breizh Histoire de la Bretagne Intégrale 2 Tomes 5 à 8
  • téléchargement epub Les gars du Val Tome 2
  • TÉLÉCHARGER PDF EPUB Le goût du bonheur Tome 1
  • PDF Kindle Dr Vincent Kane The Demon Awakens - Dr Vincent Kane 1 par johnnie thomas
  • PDF Les grandes nacres téléchargement
  • PDF Prime Time Romance - The brand new magical rom-com full of 90s nostalgia from the author of T
  • TÉLÉCHARGER PDF EPUB Aria - Codex de la guerre des deux royaumes
  • téléchargement pdf Craving of the Sands
  • Télécharger PDF Le Goût de lIvresse
  • téléchargement epub La Passe-miroir Tome 2
  • Télécharger PDF Star Wars - La Haute République
  • Lire en ligne Wanderlust on the Shore a Mail Order Bride romance
  • Télécharger PDF Le voyage inspiré
  • Kindle Whispers of Mount Arden téléchargement
  • TÉLÉCHARGER PDF EPUB The Naughty List
  • PDF जत मत पछ - social science cast sociology religion 1 par Ansuman Bhagat
  • télécharger pdf Best of Le Meilleur Pâtissier - 80 recettes
  • Télécharger PDF Lamour en bateau
  • PDF Charles T. Héros ordinaire par Olivier Taboureux
  • TÉLÉCHARGEMENTS Vivre en accord avec soi
  • téléchargement epub Sur lîle de LOST - La foi en la narration
  • Télécharger PDF Paul Hémery 1921-2006 - La lumière en liberté
  • TÉLÉCHARGEMENTS How To Get Off The Hamster Wheel
  • téléchargement epub The Legend of Vanquishing Immortals and Demons - The Legend of Vanquishing Immor
  • Télécharger PDF Chroniques euréliennes
  • Télécharger PDF Méditer avec la musique classique - Une sophrologue et un musicologue vous invitent
  • PDF Kindle The Ovenlight Saga Baking Dough - Part 1 - The Ovenlight Saga 1 par
  • Lecture en ligne Ebook Les présences imparfaites
  • TÉLÉCHARGER PDF EPUB Last Customer A Shoe Store Fantasy
  • télécharger pdf Les dieux voyagent toujours incognito
  • 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