POST api/Reports?schemeId={schemeId}&date={date}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
schemeId

integer

Required

date

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of InvestorData
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

SchemeId

integer

None.

Commitment

decimal number

None.

CommitmentRatio

decimal number

None.

UnfundedRatio

decimal number

None.

UnfundedAmount

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "SchemeId": 3,
    "Commitment": 4.1,
    "CommitmentRatio": 5.1,
    "UnfundedRatio": 6.1,
    "UnfundedAmount": 7.1
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "SchemeId": 3,
    "Commitment": 4.1,
    "CommitmentRatio": 5.1,
    "UnfundedRatio": 6.1,
    "UnfundedAmount": 7.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfReportsController.InvestorData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FundPeAPI.Controllers">
  <ReportsController.InvestorData>
    <Commitment>4.1</Commitment>
    <CommitmentRatio>5.1</CommitmentRatio>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <SchemeId>3</SchemeId>
    <UnfundedAmount>7.1</UnfundedAmount>
    <UnfundedRatio>6.1</UnfundedRatio>
  </ReportsController.InvestorData>
  <ReportsController.InvestorData>
    <Commitment>4.1</Commitment>
    <CommitmentRatio>5.1</CommitmentRatio>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <SchemeId>3</SchemeId>
    <UnfundedAmount>7.1</UnfundedAmount>
    <UnfundedRatio>6.1</UnfundedRatio>
  </ReportsController.InvestorData>
</ArrayOfReportsController.InvestorData>