GET api/section/getall

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SectionResponseData
NameDescriptionTypeAdditional information
Id

integer

None.

DepId

integer

None.

DepEnName

string

None.

DepArName

string

None.

ArName

string

None.

EnName

string

None.

Response Formats

application/xml, text/xml

Sample:
<ArrayOfSectionResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCT.VerifyDoc.API.Controllers">
  <SectionResponseData>
    <ArName>sample string 5</ArName>
    <DepArName>sample string 4</DepArName>
    <DepEnName>sample string 3</DepEnName>
    <DepId>2</DepId>
    <EnName>sample string 6</EnName>
    <Id>1</Id>
  </SectionResponseData>
  <SectionResponseData>
    <ArName>sample string 5</ArName>
    <DepArName>sample string 4</DepArName>
    <DepEnName>sample string 3</DepEnName>
    <DepId>2</DepId>
    <EnName>sample string 6</EnName>
    <Id>1</Id>
  </SectionResponseData>
</ArrayOfSectionResponseData>

application/json, text/json

Sample:
[
  {
    "DepId": 2,
    "Id": 1,
    "EnName": "sample string 6",
    "ArName": "sample string 5",
    "DepArName": "sample string 4",
    "DepEnName": "sample string 3"
  },
  {
    "DepId": 2,
    "Id": 1,
    "EnName": "sample string 6",
    "ArName": "sample string 5",
    "DepArName": "sample string 4",
    "DepEnName": "sample string 3"
  }
]