GET api/Common/GetUploadDocumentTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
DocumentTypesList| Name | Description | Type | Additional information |
|---|---|---|---|
| DocTypeList | Collection of DocTypes |
None. |
|
| ApplicantName | string |
None. |
|
| Address | string |
None. |
|
| UploadPath | string |
None. |
|
| MaxFileSize | integer |
None. |
|
| AllowedFileFormats | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"docTypeList": [
{
"documentTypeId": 1,
"documentType": "sample string 2"
},
{
"documentTypeId": 1,
"documentType": "sample string 2"
}
],
"applicantName": "sample string 1",
"address": "sample string 2",
"uploadPath": "sample string 3",
"maxFileSize": 4,
"allowedFileFormats": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<DocumentTypesList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DocTypeList>
<DocTypes>
<DocumentTypeId>1</DocumentTypeId>
<DocumentType>sample string 2</DocumentType>
</DocTypes>
<DocTypes>
<DocumentTypeId>1</DocumentTypeId>
<DocumentType>sample string 2</DocumentType>
</DocTypes>
</DocTypeList>
<ApplicantName>sample string 1</ApplicantName>
<Address>sample string 2</Address>
<UploadPath>sample string 3</UploadPath>
<MaxFileSize>4</MaxFileSize>
<AllowedFileFormats>
<string>sample string 1</string>
<string>sample string 2</string>
</AllowedFileFormats>
</DocumentTypesList>