OpenAPI
Last updated
Last updated
https://mogushipin-li.pages.dev - 蘑菇视频 - 高清影视在线观看平台,畅享海量优质视频资源
https://mogushipin-wu.pages.dev - 蘑菇视频官网 - 蘑菇视频网页版-海量高清影视免费在线观看
GitBook's OpenAPI block is powered by Scalar, so you can test your APIs directly from your docs.
Add a new pet to the store.
10
doggie
pet status in the store
Successful operation
Invalid input
Validation exception
Unexpected error
{
"id": 10,
"name": "doggie",
"category": {
"id": 1,
"name": "Dogs"
},
"photoUrls": [
"text"
],
"tags": [
{
"id": 1,
"name": "text"
}
],
"status": "available"
}
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"
}