GET api/Reports

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Reports
NameDescriptionTypeAdditional information
IdReport

decimal number

None.

IdRepTbl

decimal number

None.

ReportName

string

None.

UserName

string

None.

ReportTitle

string

None.

ReportGroupBy

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdReport": 1.0,
    "IdRepTbl": 1.0,
    "ReportName": "sample string 2",
    "UserName": "sample string 3",
    "ReportTitle": "sample string 4",
    "ReportGroupBy": "sample string 5"
  },
  {
    "IdReport": 1.0,
    "IdRepTbl": 1.0,
    "ReportName": "sample string 2",
    "UserName": "sample string 3",
    "ReportTitle": "sample string 4",
    "ReportGroupBy": "sample string 5"
  }
]

text/html

Sample:
[{"IdReport":1.0,"IdRepTbl":1.0,"ReportName":"sample string 2","UserName":"sample string 3","ReportTitle":"sample string 4","ReportGroupBy":"sample string 5"},{"IdReport":1.0,"IdRepTbl":1.0,"ReportName":"sample string 2","UserName":"sample string 3","ReportTitle":"sample string 4","ReportGroupBy":"sample string 5"}]

application/xml, text/xml

Sample:
<ArrayOfReports xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnjomanServices.Models">
  <Reports>
    <IdRepTbl>1</IdRepTbl>
    <IdReport>1</IdReport>
    <ReportGroupBy>sample string 5</ReportGroupBy>
    <ReportName>sample string 2</ReportName>
    <ReportTitle>sample string 4</ReportTitle>
    <UserName>sample string 3</UserName>
  </Reports>
  <Reports>
    <IdRepTbl>1</IdRepTbl>
    <IdReport>1</IdReport>
    <ReportGroupBy>sample string 5</ReportGroupBy>
    <ReportName>sample string 2</ReportName>
    <ReportTitle>sample string 4</ReportTitle>
    <UserName>sample string 3</UserName>
  </Reports>
</ArrayOfReports>