curl --request POST \
--url https://petstore3.swagger.io/api/v3/pet \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "doggie",
"photoUrls": [
"<string>"
],
"id": 10,
"category": {
"id": 1,
"name": "Dogs"
},
"tags": [
{
"id": 123,
"name": "<string>"
}
],
"status": "available"
}
'