GET api/section/getbyid?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
SectionResponseData| Name | Description | Type | Additional 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:
<SectionResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCT.VerifyDoc.API.Controllers"> <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>
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"
}