List All Chats
User actions
Log into the system.
Query parameters
usernamestringOptional
The user name for login
passwordstringOptional
The password for login in clear text
Responses
200
successful operation
Responsestring
400
Invalid username/password supplied
default
Unexpected error
get
/user/loginGET /api/v3/user/login HTTP/1.1
Host:
Accept: */*
<?xml version="1.0"?>
<object>text</object>
Creating users
Creates list of users with given input array.
Bodyobject[]
idinteger · int64OptionalExample:
10usernamestringOptionalExample:
theUserfirstNamestringOptionalExample:
JohnlastNamestringOptionalExample:
JamesemailstringOptionalExample:
[email protected]passwordstringOptionalExample:
12345phonestringOptionalExample:
12345userStatusinteger · int32OptionalExample:
User Status
1Responses
200
Successful operation
default
Unexpected error
post
/user/createWithListPOST /api/v3/user/createWithList HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 145
[
{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "[email protected]",
"password": "12345",
"phone": "12345",
"userStatus": 1
}
]{
"id": 10,
"username": "theUser",
"firstName": "John",
"lastName": "James",
"email": "[email protected]",
"password": "12345",
"phone": "12345",
"userStatus": 1
}Last updated