GET api/doctype/getbyid?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

DocTypeResponseData
NameDescriptionTypeAdditional information
Id

integer

None.

SecId

integer

None.

SecEnName

string

None.

SecArName

string

None.

DepId

integer

None.

DepEnName

string

None.

DepArName

string

None.

TempId

integer

None.

TempEnName

string

None.

TempArName

string

None.

ArName

string

None.

EnName

string

None.

Response Formats

application/xml, text/xml

Sample:
<DocTypeResponseData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCT.VerifyDoc.API.Controllers">
  <ArName>sample string 11</ArName>
  <DepArName>sample string 7</DepArName>
  <DepEnName>sample string 6</DepEnName>
  <DepId>5</DepId>
  <EnName>sample string 12</EnName>
  <Id>1</Id>
  <SecArName>sample string 4</SecArName>
  <SecEnName>sample string 3</SecEnName>
  <SecId>2</SecId>
  <TempArName>sample string 10</TempArName>
  <TempEnName>sample string 9</TempEnName>
  <TempId>8</TempId>
</DocTypeResponseData>

application/json, text/json

Sample:
{
  "TempId": 8,
  "DepId": 5,
  "SecId": 2,
  "Id": 1,
  "EnName": "sample string 12",
  "ArName": "sample string 11",
  "TempArName": "sample string 10",
  "TempEnName": "sample string 9",
  "DepArName": "sample string 7",
  "DepEnName": "sample string 6",
  "SecArName": "sample string 4",
  "SecEnName": "sample string 3"
}