curl --request POST \
--url https://petstore3.swagger.io/api/v3/user \
--header 'Content-Type: application/json' \
--data '
{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "[email protected]",
"password": "12345",
"phone": "12345",
"userStatus": 1
}
'