POST api/admin/CodeTable/ApplicantType

Get valid Applicant Types for Salvage Transactions

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 ApplicantTypeCode
NameDescriptionTypeAdditional information

ApplicantType

string

None.

ApplicantTypeDesc

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ApplicantType": "sample string 1",
    "ApplicantTypeDesc": "sample string 2"
  },
  {
    "ApplicantType": "sample string 1",
    "ApplicantTypeDesc": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApplicantTypeCode xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ApplicantTypeCode>
    <ApplicantType>sample string 1</ApplicantType>
    <ApplicantTypeDesc>sample string 2</ApplicantTypeDesc>
  </ApplicantTypeCode>
  <ApplicantTypeCode>
    <ApplicantType>sample string 1</ApplicantType>
    <ApplicantTypeDesc>sample string 2</ApplicantTypeDesc>
  </ApplicantTypeCode>
</ArrayOfApplicantTypeCode>