Last updated 6 months ago
Good to know: All the methods shown below are synced to an example OpenAPI file URL and are kept up to date automatically with changes to the API.
Log into the system.
The user name for login
The password for login in clear text
GET /api/v3/user/login HTTP/1.1 Host: Accept: */*
successful operation
<?xml version="1.0"?> <object>text</object>
Log user out of the system.
GET /api/v3/user/logout HTTP/1.1 Host: Accept: */*
No content
Creates list of users with given input array.
10
theUser
John
James
john@email.com
12345
User Status
1
POST /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": "john@email.com", "password": "12345", "phone": "12345", "userStatus": 1 } ]
Successful operation
{ "id": 10, "username": "theUser", "firstName": "John", "lastName": "James", "email": "john@email.com", "password": "12345", "phone": "12345", "userStatus": 1 }