curl --location --request POST 'https://petstore-prod.apifox.cn/pet' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "string",
"category": {
"id": 0,
"name": "string"
}
}'
{
"id": 0,
"category": {
"id": 0,
"name": "string"
},
"name": "doggie",
"photoUrls": [
"string"
],
"tags": [
{
"id": 0,
"name": "string"
}
],
"status": "available",
"createTime": "string",
"location": {
"province": "string",
"city": "string",
"district": "string"
}
}