POST api/admin/CodeTable/DocumentType

Get all current valid document types available for uploading

Request Information

URI Parameters

None.

Body Parameters

Request
NameDescriptionTypeAdditional information

Authentication

Authentication

None.

Request Formats

application/json, text/json

Sample:
{
  "Authentication": {
    "AgentCustomerNumber": 1,
    "DealerLicenseType": "sample string 1",
    "DealerLicenseNumber": 1,
    "DealerLicenseSuffix": 1,
    "EmpCustomerNumber": 1,
    "LogNumber": 1,
    "DealerLicensePin": "sample string 2",
    "EmployeeType": "sample string 3"
  }
}

application/xml, text/xml

Sample:
<Request xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Authentication>
    <AgentCustomerNumber>1</AgentCustomerNumber>
    <DealerLicenseType>sample string 1</DealerLicenseType>
    <DealerLicenseNumber>1</DealerLicenseNumber>
    <DealerLicenseSuffix>1</DealerLicenseSuffix>
    <EmpCustomerNumber>1</EmpCustomerNumber>
    <LogNumber>1</LogNumber>
    <DealerLicensePin>sample string 2</DealerLicensePin>
    <EmployeeType>sample string 3</EmployeeType>
  </Authentication>
</Request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of MvDocumentType
NameDescriptionTypeAdditional information

DocumentTypeCode

string

None.

DocumentTypeDescription

string

None.

DhsmvFormNumber

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DocumentTypeCode": "sample string 1",
    "DocumentTypeDescription": "sample string 2",
    "DhsmvFormNumber": "sample string 3"
  },
  {
    "DocumentTypeCode": "sample string 1",
    "DocumentTypeDescription": "sample string 2",
    "DhsmvFormNumber": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMvDocumentType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MvDocumentType>
    <DocumentTypeCode>sample string 1</DocumentTypeCode>
    <DocumentTypeDescription>sample string 2</DocumentTypeDescription>
    <DhsmvFormNumber>sample string 3</DhsmvFormNumber>
  </MvDocumentType>
  <MvDocumentType>
    <DocumentTypeCode>sample string 1</DocumentTypeCode>
    <DocumentTypeDescription>sample string 2</DocumentTypeDescription>
    <DhsmvFormNumber>sample string 3</DhsmvFormNumber>
  </MvDocumentType>
</ArrayOfMvDocumentType>