GET api/types/{key}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key | string |
Required |
Body Parameters
None.
Response Information
Resource Description
DocumentTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| FolderId | integer |
None. |
|
| FolderName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"FolderId": 3,
"FolderName": "sample string 4"
}
application/xml, text/xml
Sample:
<DocumentTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Matrix.DocumentUploadService.Plugin"> <FolderId>3</FolderId> <FolderName>sample string 4</FolderName> <Id>1</Id> <Name>sample string 2</Name> </DocumentTypeViewModel>