Finds Pets by tags.
GET
/pet/findByTags
Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
Parameters
| Name | Type | Description |
|---|---|---|
| tags required | array | Tags to filter by |
JSON
[
{
"id": 10,
"name": "doggie",
"category": {
"id": 1,
"name": "Dogs"
},
"photoUrls": [
"string"
],
"tags": [
{
"id": 1,
"name": "string"
}
],
"status": "available"
}
]
Response Codes
200
successful operation
400
Invalid tag value