POST wrapper/admin
(SLAdmin) ISI Reserved Function.
Request Information
URI Parameters
None.
Body Parameters
LSTServicesAdminRequestName | Description | Type | Additional information |
---|---|---|---|
organizationName |
For Internal ISI Use Only |
string |
None. |
userName |
For Internal ISI Use Only |
string |
None. |
password |
For Internal ISI Use Only |
string |
None. |
stringOptions |
For Internal ISI Use Only |
Collection of string |
None. |
doubleOptions |
For Internal ISI Use Only |
Collection of decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "organizationName": "sample string 1", "userName": "sample string 2", "password": "sample string 3", "stringOptions": [ "sample string 1", "sample string 2" ], "doubleOptions": [ 1.1, 2.1 ] }
application/xml, text/xml
Sample:
<LSTServicesAdminRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <doubleOptions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:double>1.1</d2p1:double> <d2p1:double>2.1</d2p1:double> </doubleOptions> <organizationName>sample string 1</organizationName> <password>sample string 3</password> <stringOptions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </stringOptions> <userName>sample string 2</userName> </LSTServicesAdminRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LSTServicesAdminResponseName | Description | Type | Additional information |
---|---|---|---|
response |
For Internal ISI Use Only |
Collection of string |
None. |
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. |
version |
The version of the Wrapper. |
string |
None. |
isiReserved |
A field used to return debugging information. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "response": [ "sample string 1", "sample string 2" ], "status": 0, "code": 0, "message": "sample string 1", "version": "sample string 2", "isiReserved": "sample string 3" }
application/xml, text/xml
Sample:
<LSTServicesAdminResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <code>SUCCESS</code> <isiReserved>sample string 3</isiReserved> <message>sample string 1</message> <response xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </response> <status>PASS</status> <version>sample string 2</version> </LSTServicesAdminResponse>