Create users with list
Creates a list of users from a given input array.
POST
https://petstore3.swagger.io/api/v3/user/createWithList Body parameters
users array of User The users to create.
Returns
Returns the first created User.
id integer Unique id for the user.
Request
curl https://petstore3.swagger.io/api/v3/user/createWithList \ -H "Content-Type: application/json" \ -d '[{ "username": "theUser", "email": "john@email.com" }]'Response
{ "id": 10, "username": "theUser", "email": "john@email.com" }