POST wrapper/user/get
(SLUserGet) Gets the details for a User in a FinScan Organization
Request Information
URI Parameters
None.
Body Parameters
LSTServicesUserGetRequestName | Description | Type | Additional information |
---|---|---|---|
organizationName |
The User's Organization Name. |
string |
None. |
userName |
The User's Name. |
string |
None. |
password |
The User's Password. |
string |
None. |
userOrganizationName |
The Organization Name of the User to Get. |
string |
None. |
userUserName |
The UserName of the User to Get. |
string |
None. |
Request Formats
application/json, text/json
{ "organizationName": "sample string 1", "userName": "sample string 2", "password": "sample string 3", "userOrganizationName": "sample string 4", "userUserName": "sample string 5" }
application/xml, text/xml
<LSTServicesUserGetRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <organizationName>sample string 1</organizationName> <password>sample string 3</password> <userName>sample string 2</userName> <userOrganizationName>sample string 4</userOrganizationName> <userUserName>sample string 5</userUserName> </LSTServicesUserGetRequest>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
LSTServicesUserGetResponseName | Description | Type | Additional information |
---|---|---|---|
status |
The Current Status of the User Get within FinScan [Pass or Error]. |
SLResultTypeEnum |
None. |
code |
A Code Value for the Status/Message returned. |
SLWrapperCodes |
None. |
message |
String containing information on the User Get status/results including Error details. |
string |
None. |
userDisplayName |
The name displayed for the User within FinScan. |
string |
None. |
userStatus |
The Status of the User [Active or Inactive] |
SLClientStatusEnum |
None. |
userEAddress |
The Email Address of the User. |
string |
None. |
userPhone |
The Phone Number of the User. |
string |
None. |
userGroups |
The Groups of the User. |
Collection of string |
None. |
userDenyGUILogin |
Whether the User is Allowed to Log Into FinScan |
SLYesNoEnum |
None. |
userComments |
The Comments of the User. |
string |
None. |
userIsComplianceCentric |
Whether the User is Compliance Centric (or Client Centric) for Review. |
SLYesNoEnum |
None. |
userLanguage |
The Language of the User. |
SLLanguageCodesEnum |
None. |
userPasswordNeverExpires |
Whether the User's Password will expire. |
SLYesNoEnum |
None. |
userWebServiceIdentity |
Whether or not the User is allowed to make Web Service calls. |
SLWebServiceIdentitiesEnum |
None. |
version |
The version of the Wrapper. |
string |
None. |
isiReserved |
A field used to return debugging information. |
string |
None. |
Response Formats
application/json, text/json
{ "status": 0, "code": 0, "message": "sample string 1", "userDisplayName": "sample string 2", "userStatus": 0, "userEAddress": "sample string 3", "userPhone": "sample string 4", "userGroups": [ "sample string 1", "sample string 2" ], "userDenyGUILogin": 0, "userComments": "sample string 5", "userIsComplianceCentric": 0, "userLanguage": 0, "userPasswordNeverExpires": 0, "userWebServiceIdentity": 0, "version": "sample string 6", "isiReserved": "sample string 7" }
application/xml, text/xml
<LSTServicesUserGetResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <code>SUCCESS</code> <isiReserved>sample string 7</isiReserved> <message>sample string 1</message> <status>PASS</status> <userComments>sample string 5</userComments> <userDenyGUILogin>No</userDenyGUILogin> <userDisplayName>sample string 2</userDisplayName> <userEAddress>sample string 3</userEAddress> <userGroups xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </userGroups> <userIsComplianceCentric>No</userIsComplianceCentric> <userLanguage>ENG</userLanguage> <userPasswordNeverExpires>No</userPasswordNeverExpires> <userPhone>sample string 4</userPhone> <userStatus>Active</userStatus> <userWebServiceIdentity>NONE</userWebServiceIdentity> <version>sample string 6</version> </LSTServicesUserGetResponse>