POST wrapper/network/create
(SLNetworkCreate) Creates a Network within a FinScan Organization
Request Information
URI Parameters
None.
Body Parameters
LSTServicesNetworkCreateRequestName | 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. |
networkType |
The Type of Network Generated [Unknown, Household or Network]. |
string |
None. |
members |
The Members of the Network to be created. |
Collection of SLNetworkMember |
None. |
Request Formats
application/json, text/json
Sample:
{ "organizationName": "sample string 1", "userName": "sample string 2", "password": "sample string 3", "networkType": "sample string 4", "members": [ { "clientKey": 1, "applicationId": "sample string 2", "clientId": "sample string 3", "networkRelationshipType": "sample string 4" }, { "clientKey": 1, "applicationId": "sample string 2", "clientId": "sample string 3", "networkRelationshipType": "sample string 4" } ] }
application/xml, text/xml
Sample:
<LSTServicesNetworkCreateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <members> <SLNetworkMember> <applicationId>sample string 2</applicationId> <clientId>sample string 3</clientId> <clientKey>1</clientKey> <networkRelationshipType>sample string 4</networkRelationshipType> </SLNetworkMember> <SLNetworkMember> <applicationId>sample string 2</applicationId> <clientId>sample string 3</clientId> <clientKey>1</clientKey> <networkRelationshipType>sample string 4</networkRelationshipType> </SLNetworkMember> </members> <networkType>sample string 4</networkType> <organizationName>sample string 1</organizationName> <password>sample string 3</password> <userName>sample string 2</userName> </LSTServicesNetworkCreateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LSTServicesNetworkCreateResponseName | Description | Type | Additional information |
---|---|---|---|
status |
The Current Status of the Client matches within FinScan [Pass, Pending, Fail, Error or Duplicate]. |
SLResultTypeEnum |
None. |
code |
A Code Value for the Status/Message returned. |
SLWrapperCodes |
None. |
networkKey |
The Unique Key for the Network within FinScan. |
integer |
None. |
message |
String containing information on the Search 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:
{ "status": 0, "code": 0, "networkKey": 1, "message": "sample string 2", "version": "sample string 3", "isiReserved": "sample string 4" }
application/xml, text/xml
Sample:
<LSTServicesNetworkCreateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LSTServicesLookup"> <code>SUCCESS</code> <isiReserved>sample string 4</isiReserved> <message>sample string 2</message> <networkKey>1</networkKey> <status>PASS</status> <version>sample string 3</version> </LSTServicesNetworkCreateResponse>