GET api/User/GetReportList?securityKey={securityKey}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
securityKey

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ReportTitle
NameDescriptionTypeAdditional information
SecurityKey

string

None.

ReportId

integer

None.

Title

string

None.

ReportKey

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SecurityKey": "sample string 1",
    "ReportId": 2,
    "Title": "sample string 3",
    "ReportKey": "sample string 4"
  },
  {
    "SecurityKey": "sample string 1",
    "ReportId": 2,
    "Title": "sample string 3",
    "ReportKey": "sample string 4"
  }
]

text/html

Sample:
[{"SecurityKey":"sample string 1","ReportId":2,"Title":"sample string 3","ReportKey":"sample string 4"},{"SecurityKey":"sample string 1","ReportId":2,"Title":"sample string 3","ReportKey":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfReportTitle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dnyanved.Core.Model">
  <ReportTitle>
    <ReportId>2</ReportId>
    <ReportKey>sample string 4</ReportKey>
    <SecurityKey>sample string 1</SecurityKey>
    <Title>sample string 3</Title>
  </ReportTitle>
  <ReportTitle>
    <ReportId>2</ReportId>
    <ReportKey>sample string 4</ReportKey>
    <SecurityKey>sample string 1</SecurityKey>
    <Title>sample string 3</Title>
  </ReportTitle>
</ArrayOfReportTitle>