GET api/documenttypes/{docTypeId}/documentsubtypes?page={page}&pageSize={pageSize}

Get all document subtypes for a specific document type

Request Information

Authentication

This method requires user authentication

URI Parameters

NameDescriptionTypeAdditional information
docTypeId

(Required)

integer

Required

page

(Optional)The page number of returned records based on the page size

integer

0

pageSize

(Optional)The number of records to return per page

integer

0

Body Parameters

None.

Response Information

Resource Description

ListWrapperOfDocumentSubtype
NameDescriptionTypeAdditional information
Total

integer

None.

Elements

Collection of DocumentSubtype

None.

Response Formats

application/json, text/json

Sample:
{
  "Total": 1,
  "Elements": [
    {
      "DocumentSubtypeId": 1,
      "DocumentTypeId": 1,
      "DocumentSubtypeName": "sample string 2",
      "DocumentSubtypeCategory": "sample string 3"
    },
    {
      "DocumentSubtypeId": 1,
      "DocumentTypeId": 1,
      "DocumentSubtypeName": "sample string 2",
      "DocumentSubtypeCategory": "sample string 3"
    }
  ]
}