GET api/RepTbls

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RepTbls
NameDescriptionTypeAdditional information
IdRepTbl

decimal number

None.

RepTblName

string

None.

RepTblCaption

string

None.

OptionId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdRepTbl": 1.0,
    "RepTblName": "sample string 2",
    "RepTblCaption": "sample string 3",
    "OptionId": 1
  },
  {
    "IdRepTbl": 1.0,
    "RepTblName": "sample string 2",
    "RepTblCaption": "sample string 3",
    "OptionId": 1
  }
]

text/html

Sample:
[{"IdRepTbl":1.0,"RepTblName":"sample string 2","RepTblCaption":"sample string 3","OptionId":1},{"IdRepTbl":1.0,"RepTblName":"sample string 2","RepTblCaption":"sample string 3","OptionId":1}]

application/xml, text/xml

Sample:
<ArrayOfRepTbls xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AnjomanServices.Models">
  <RepTbls>
    <IdRepTbl>1</IdRepTbl>
    <OptionId>1</OptionId>
    <RepTblCaption>sample string 3</RepTblCaption>
    <RepTblName>sample string 2</RepTblName>
  </RepTbls>
  <RepTbls>
    <IdRepTbl>1</IdRepTbl>
    <OptionId>1</OptionId>
    <RepTblCaption>sample string 3</RepTblCaption>
    <RepTblName>sample string 2</RepTblName>
  </RepTbls>
</ArrayOfRepTbls>