POST api/Reports?startDate={startDate}&endDate={endDate}&schemeId={schemeId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| startDate | date |
Required |
|
| endDate | date |
Required |
|
| schemeId | integer |
Required |
Body Parameters
Collection of Investor| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| SchemeId | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"id": 1,
"SchemeId": 2
},
{
"id": 1,
"SchemeId": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfReportsController.Investor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FundPeAPI.Controllers">
<ReportsController.Investor>
<SchemeId>2</SchemeId>
<id>1</id>
</ReportsController.Investor>
<ReportsController.Investor>
<SchemeId>2</SchemeId>
<id>1</id>
</ReportsController.Investor>
</ArrayOfReportsController.Investor>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
FeeResult| Name | Description | Type | Additional information |
|---|---|---|---|
| FeesBreakage | Dictionary of integer [key] and decimal number [value] |
None. |
|
| TotalFees | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"FeesBreakage": {
"1": 2.0,
"3": 4.0
},
"TotalFees": 1.0
}
application/xml, text/xml
Sample:
<ReportsController.FeeResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FundPeAPI.Controllers">
<FeesBreakage xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfintdecimal>
<d2p1:Key>1</d2p1:Key>
<d2p1:Value>2</d2p1:Value>
</d2p1:KeyValueOfintdecimal>
<d2p1:KeyValueOfintdecimal>
<d2p1:Key>3</d2p1:Key>
<d2p1:Value>4</d2p1:Value>
</d2p1:KeyValueOfintdecimal>
</FeesBreakage>
<TotalFees>1</TotalFees>
</ReportsController.FeeResult>