POST api/Investor/v1/GetInvestorsWithPartnerCode
Request Information
URI Parameters
None.
Body Parameters
GetInvestorsWithPartnerCodeRequestName | Description | Type | Additional information |
---|---|---|---|
partnerCode |
Partner Code |
string |
None. |
OrganizationCode | string |
None. |
|
UserName | string |
None. |
|
Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "partnerCode": "sample string 1", "OrganizationCode": "sample string 2", "UserName": "sample string 3", "Password": "sample string 4" }
application/xml, text/xml
Sample:
<GetInvestorsWithPartnerCodeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers.Investor"> <OrganizationCode xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 2</OrganizationCode> <Password xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 4</Password> <UserName xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 3</UserName> <partnerCode>sample string 1</partnerCode> </GetInvestorsWithPartnerCodeRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GetInvestorsWithPartnerCodeReplyName | Description | Type | Additional information |
---|---|---|---|
Reply | Collection of Investor |
None. |
|
Ok | boolean |
None. |
|
ErrorMessage | string |
None. |
|
ErrorCode | string |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Reply": [ { "CustomerId": "2a3176c0-b47f-461a-a98a-7b9e205e9f86", "CustomerNumber": "sample string 2", "Name": "sample string 3", "FirstName": "sample string 4", "ExternalCustomerNumber": "sample string 5", "ExternalPortfolioNumber": "sample string 6" }, { "CustomerId": "2a3176c0-b47f-461a-a98a-7b9e205e9f86", "CustomerNumber": "sample string 2", "Name": "sample string 3", "FirstName": "sample string 4", "ExternalCustomerNumber": "sample string 5", "ExternalPortfolioNumber": "sample string 6" } ], "Ok": true, "ErrorMessage": "sample string 2", "ErrorCode": "sample string 3", "Message": "sample string 4" }
application/xml, text/xml
Sample:
<GetInvestorsWithPartnerCodeReply xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers.Investor"> <ErrorCode xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 3</ErrorCode> <ErrorMessage xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 2</ErrorMessage> <Message xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">sample string 4</Message> <Ok xmlns="http://schemas.datacontract.org/2004/07/FfApi.Controllers">true</Ok> <Reply> <Investor> <CustomerId>2a3176c0-b47f-461a-a98a-7b9e205e9f86</CustomerId> <CustomerNumber>sample string 2</CustomerNumber> <ExternalCustomerNumber>sample string 5</ExternalCustomerNumber> <ExternalPortfolioNumber>sample string 6</ExternalPortfolioNumber> <FirstName>sample string 4</FirstName> <Name>sample string 3</Name> </Investor> <Investor> <CustomerId>2a3176c0-b47f-461a-a98a-7b9e205e9f86</CustomerId> <CustomerNumber>sample string 2</CustomerNumber> <ExternalCustomerNumber>sample string 5</ExternalCustomerNumber> <ExternalPortfolioNumber>sample string 6</ExternalPortfolioNumber> <FirstName>sample string 4</FirstName> <Name>sample string 3</Name> </Investor> </Reply> </GetInvestorsWithPartnerCodeReply>