API showdown///
- Pet Store
Train Travel API
- Creates list of users with given input array
Create user
Logs user into the system
Logs out current logged in user session
Get user by user name
Update user
Delete user
Creates list of users wit...
Creates list of users with given input array
- Mock serverhttps://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/user/createWithList
- https://innovario.apishowdown.com/v3https://innovario.apishowdown.com/v3/user/createWithList
curl -i -X POST \
https://innovario.apishowdown.com/_mock/catalog/api-showdown/api-hub/pet-store/openapi/user/createWithList \
-H 'Content-Type: application/json' \
-d '[
{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "john@email.com",
"password": 12345,
"phone": 12345,
"userStatus": 1
}
]'Successful operation
Response
- application/xml
- application/json
<user>
<id>10</id>
<username>theUser</username>
<firstName>John</firstName>
<lastName>James</lastName>
<email>john@email.com</email>
<password>12345</password>
<phone>12345</phone>
<userStatus>1</userStatus>
</user>