POST
/user/createWithListoperationId:
createUsersWithListInputCreates list of users with given input array.
Creates list of users with given input array.
🔒petstore_auth
🔒api_key
api_key: <your-key>Request Body optional
application/json
| Name | Type | Required | Example / Values |
|---|---|---|---|
| array[object] | |||
| Item | object | ||
| id | integer (int64) | optional | Example: 10 |
| username | string | optional | Example: "theUser" |
| firstName | string | optional | Example: "John" |
| lastName | string | optional | Example: "James" |
| string | optional | Example: "[email protected]" | |
| password | string | optional | Example: "12345" |
| phone | string | optional | Example: "12345" |
| userStatus | integer (int32) | optional | User Status Example: 1 |
Example
[
{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "[email protected]",
"password": "12345",
"phone": "12345",
"userStatus": 1
}
]Responses
▼200 OK — Successful operation
▼default — Unexpected error