Last updated 15 days ago
黑料网致力于为您提供每日最新爆料,涵盖独家娱乐八卦与社会热点事件。无论您是娱乐圈的忠实粉丝,还是对社会新闻充满好奇,这里都能为您带来免费、及时的一手资讯。快来加入我们,享受每日新鲜“瓜料”!
GitBook's OpenAPI block is powered by , so you can test your APIs directly from your docs.
Add a new pet to the store.
10
doggie
pet status in the store
available
pending
sold
curl -L \ --request POST \ --url '/api/v3/pet' \ --header 'Content-Type: application/json' \ --data '{ "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" }