GET api/documentsubtypes/{id}

Get document subtype by the id.

Request Information

Authentication

This method requires user authentication

URI Parameters

NameDescriptionTypeAdditional information
id

(Required)

integer

Required

Body Parameters

None.

Response Information

Resource Description

DocumentSubtype
NameDescriptionTypeAdditional information
DocumentSubtypeId

Document Sub Type Id. Primary key of the document sub type table.

integer

None.

DocumentTypeId

Document Type Id. See the GET api/documenttypes/{Id} route for the document type data.

integer

None.

DocumentSubtypeName

Document Sub Type Name.

string

None.

DocumentSubtypeCategory

Document Sub Type Category.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "DocumentSubtypeId": 1,
  "DocumentTypeId": 1,
  "DocumentSubtypeName": "sample string 2",
  "DocumentSubtypeCategory": "sample string 3"
}