GET api/Investor/GetInvProfile?inusercode={inusercode}&Company={Company}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| inusercode | string |
Required |
|
| Company | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MdlInvestmentProfileResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | string |
None. |
|
| error_message | string |
None. |
|
| data | Collection of MdlGlobalInvestrmentProfile |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": "sample string 1",
"error_message": "sample string 2",
"data": [
{
"DisplayName": "sample string 1",
"Values": "sample string 2"
},
{
"DisplayName": "sample string 1",
"Values": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<MdlInvestmentProfileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Investor.Models">
<data>
<MdlGlobalInvestrmentProfile>
<DisplayName>sample string 1</DisplayName>
<Values>sample string 2</Values>
</MdlGlobalInvestrmentProfile>
<MdlGlobalInvestrmentProfile>
<DisplayName>sample string 1</DisplayName>
<Values>sample string 2</Values>
</MdlGlobalInvestrmentProfile>
</data>
<error_message>sample string 2</error_message>
<success>sample string 1</success>
</MdlInvestmentProfileResponse>