GET api/ReportFields?IdReport={IdReport}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
IdReport

decimal number

Required

Body Parameters

None.

Response Information

Resource Description

Collection of View_ReportFields
NameDescriptionTypeAdditional information
IdReportField

decimal number

None.

IdReport

decimal number

None.

IdTblField

decimal number

None.

ShowInList

boolean

None.

ShowInSummary

boolean

None.

TblFieldName

string

None.

TblFieldCaption

string

None.

TblFieldWidth

integer

None.

TblFieldType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdReportField": 1.0,
    "IdReport": 1.0,
    "IdTblField": 1.0,
    "ShowInList": true,
    "ShowInSummary": true,
    "TblFieldName": "sample string 2",
    "TblFieldCaption": "sample string 3",
    "TblFieldWidth": 1,
    "TblFieldType": "sample string 4"
  },
  {
    "IdReportField": 1.0,
    "IdReport": 1.0,
    "IdTblField": 1.0,
    "ShowInList": true,
    "ShowInSummary": true,
    "TblFieldName": "sample string 2",
    "TblFieldCaption": "sample string 3",
    "TblFieldWidth": 1,
    "TblFieldType": "sample string 4"
  }
]

text/html

Sample:
[{"IdReportField":1.0,"IdReport":1.0,"IdTblField":1.0,"ShowInList":true,"ShowInSummary":true,"TblFieldName":"sample string 2","TblFieldCaption":"sample string 3","TblFieldWidth":1,"TblFieldType":"sample string 4"},{"IdReportField":1.0,"IdReport":1.0,"IdTblField":1.0,"ShowInList":true,"ShowInSummary":true,"TblFieldName":"sample string 2","TblFieldCaption":"sample string 3","TblFieldWidth":1,"TblFieldType":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfView_ReportFields xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnjomanServices.Models">
  <View_ReportFields>
    <IdReport>1</IdReport>
    <IdReportField>1</IdReportField>
    <IdTblField>1</IdTblField>
    <ShowInList>true</ShowInList>
    <ShowInSummary>true</ShowInSummary>
    <TblFieldCaption>sample string 3</TblFieldCaption>
    <TblFieldName>sample string 2</TblFieldName>
    <TblFieldType>sample string 4</TblFieldType>
    <TblFieldWidth>1</TblFieldWidth>
  </View_ReportFields>
  <View_ReportFields>
    <IdReport>1</IdReport>
    <IdReportField>1</IdReportField>
    <IdTblField>1</IdTblField>
    <ShowInList>true</ShowInList>
    <ShowInSummary>true</ShowInSummary>
    <TblFieldCaption>sample string 3</TblFieldCaption>
    <TblFieldName>sample string 2</TblFieldName>
    <TblFieldType>sample string 4</TblFieldType>
    <TblFieldWidth>1</TblFieldWidth>
  </View_ReportFields>
</ArrayOfView_ReportFields>