POST api/admin/CodeTable/MakeTypes

Get all make type codes.

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

MakeTypeCode

string

None.

MakeTypeDescription

string

None.

WorldManufacturingIdentifier

string

None.

IsActiveInd

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MakeTypeCode": "sample string 1",
    "MakeTypeDescription": "sample string 2",
    "WorldManufacturingIdentifier": "sample string 3",
    "IsActiveInd": true
  },
  {
    "MakeTypeCode": "sample string 1",
    "MakeTypeDescription": "sample string 2",
    "WorldManufacturingIdentifier": "sample string 3",
    "IsActiveInd": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfMakeType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MakeType>
    <MakeTypeCode>sample string 1</MakeTypeCode>
    <MakeTypeDescription>sample string 2</MakeTypeDescription>
    <WorldManufacturingIdentifier>sample string 3</WorldManufacturingIdentifier>
    <IsActiveInd>true</IsActiveInd>
  </MakeType>
  <MakeType>
    <MakeTypeCode>sample string 1</MakeTypeCode>
    <MakeTypeDescription>sample string 2</MakeTypeDescription>
    <WorldManufacturingIdentifier>sample string 3</WorldManufacturingIdentifier>
    <IsActiveInd>true</IsActiveInd>
  </MakeType>
</ArrayOfMakeType>