Retrieve
GET/pets/{petId}
Path Parameters
petId: number
Returns
Retrieve
curl http://localhost:4000/api/v3/pets/$PET_ID \
-H "Authorization: Bearer $BARKEND_BEARER_TOKEN"{
"name": "name",
"photoUrls": [
"string"
],
"id": 0,
"category": {
"id": 0,
"name": "name"
},
"status": "available",
"tags": [
{
"id": 0,
"name": "name"
}
]
}Returns Examples
{
"name": "name",
"photoUrls": [
"string"
],
"id": 0,
"category": {
"id": 0,
"name": "name"
},
"status": "available",
"tags": [
{
"id": 0,
"name": "name"
}
]
}