Creates list of users with given input array
Creates list of users with given input array
POST
/user/createWithList
curl \
--request POST '/api/v3/user/createWithList' \
--header "Content-Type: application/json" \
--data '[{"id":10,"username":"theUser","firstName":"John","lastName":"James","email":"john@email.com","password":"12345","phone":"12345","userStatus":1}]'
Request examples
[
{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "john@email.com",
"password": "12345",
"phone": "12345",
"userStatus": 1
}
]
Response examples (200)
<?xml version="1.0" encoding="UTF-8"?>
<root>
<id type="integer">10</id>
<username>theUser</username>
<firstName>John</firstName>
<lastName>James</lastName>
<email>john@email.com</email>
<password>12345</password>
<phone>12345</phone>
<userStatus type="integer">1</userStatus>
</root>
Response examples (200)
{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "john@email.com",
"password": "12345",
"phone": "12345",
"userStatus": 1
}