GET api/v1/advisor/investor?fullInvestorList={fullInvestorList}
Returns all unique client identifiers for an advisor
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
fullInvestorList | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
List of investor models
InvestorIdentifierModelName | Description | Type | Additional information |
---|---|---|---|
EmailAddress | string |
None. |
|
FullName | string |
None. |
|
UniqueIdentifier | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "InvestorId": 1, "FirstName": "sample string 2", "LastName": "sample string 3", "InvestorName": "sample string 4", "UserName": "sample string 5" }
application/xml, text/xml
Sample:
<WAInvestor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DatabaseAccessor.WealthAccess.ViewModels"> <FirstName>sample string 2</FirstName> <InvestorId>1</InvestorId> <InvestorName>sample string 4</InvestorName> <LastName>sample string 3</LastName> <UserName>sample string 5</UserName> </WAInvestor>