This method gets users by companyId
| Name | Value | |
|---|---|---|
| REST-API METHOD | GET USERS BY COMPANYID | |
| HTTP METHOD | GET | |
| RESPONSE TYPE | XML | |
| URL | https://api.csm.next4biz.net/services/UserService/{CompanyID}/userlist.json/{maximumRows}/{startRowIndex}/{LangID} | |
| REQUEST HEAD | Authorization: Basic {base64 encoded username:password} Accept: text/html,application/xhtml+json,application/json;q=0.9,*/*;q=0.8 Content-Type: application/json | Authorization: Basic {base64 encoded username:password} Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Content-Type: application/xml |
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfUser
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<User>
<UserID>{UserID}</UserID>
<Name>{Name}</Name>
<UserBusinessChannelID>{UserBusinessChannelID}</UserBusinessChannelID>
<UserEmail>{UserEmail}</UserEmail>
<UserSurname>{UserSurname}</UserSurname>
<PersonelNo>{PersonelNo}</PersonelNo>
<IsBuiltIn>{IsBuiltIn}</IsBuiltIn>
<UserType>{UserType}</UserType>
</User>
</ArrayOfUser>
{
"User": {
"UserID": "{UserID}",
"Name": "{Name}",
"UserBusinessChannelID": "{UserBusinessChannelID}",
"UserEmail": "{UserEmail}",
"UserSurname": "{UserSurname}",
"PersonelNo": "{PersonelNo}",
"IsBuiltIn": "{IsBuiltIn}",
"UserType": "{UserType}"
}
}