GET api/admin/masters/GetDocTypeByID?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
utblMstDocumentType| Name | Description | Type | Additional information |
|---|---|---|---|
| DocTypeID | integer |
None. |
|
| DocTypeName | string |
None. |
|
| IsRequired | boolean |
None. |
|
| AllowedDocuments | string |
None. |
|
| IsOfflineDoc | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"DocTypeID": 1,
"DocTypeName": "sample string 2",
"IsRequired": true,
"AllowedDocuments": "sample string 4",
"IsOfflineDoc": true
}
application/xml, text/xml
Sample:
<utblMstDocumentType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LAW.Entities.models"> <AllowedDocuments>sample string 4</AllowedDocuments> <DocTypeID>1</DocTypeID> <DocTypeName>sample string 2</DocTypeName> <IsOfflineDoc>true</IsOfflineDoc> <IsRequired>true</IsRequired> </utblMstDocumentType>