GET api/v1/advisor/investor?investorId[0]={investorId[0]}&investorId[1]={investorId[1]}&firstName={firstName}&lastName={lastName}&userName={userName}

Returns a list of investors for a given advisor

Request Information

URI Parameters

NameDescriptionTypeAdditional information
investorId

Optional: Filters the list by investorId.

Collection of integer

None.

firstName

Optional: Filters the list by investor's first name.

string

None.

lastName

Optional: Filters the list by investor's last name or estate name.

string

None.

userName

Optional: Filters the list by investor's username or estate name.

string

None.

Body Parameters

None.

Response Information

Resource Description

List of investor models

WAInvestor
NameDescriptionTypeAdditional information
InvestorId

integer

None.

FirstName

string

None.

LastName

string

None.

InvestorName

string

None.

UserName

string

None.

EmailAddress

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>