GET api/CommercialVehicle/{id}

Get a Commercial Vehicle Annual Permit details by tracking number

Request Information

URI Parameters

NameDescriptionType
id

integer

Body Parameters

None.

Response Information

Resource Description

CommercialVehicleViewModel
NameDescriptionType
TrackingNumber

Tracking Number of the permit

decimal number
PermitNumber

Permit Number of the permit

string
USDOTNumber

US DOT Number

string
OperatorRegisteredName

Operator's Registered Name

string
VehicleLicenseNumbers

Vehicle License Numbers

string
EffectiveDate

Effective Date of Permit

date
ExpirationDate

Expiration date of the Permit

date
ApplicantName

Name of the person applied the permit

string
SubmissionDate

Date on which Permit Application was Submitted

date
AssignedDate

Date on which Permit Application was Assigned for Review

date
LastApprovalDate

Date on which Permit last approved

date
IssueDate

Date on which Permit was Issued

date
Status

Permit Status

string
VehicleType

Commercial Vehicle Type

string
AssignedTechnician

Assigned Technician Name

string
Location

Location of Permit. Applies to Single Haul Permits

string
Latitude

Permit Location - Latitude

decimal number
Longitude

Permit Location - Longitude

decimal number
TripType

Type of the trip for which permit applied for. Applies to Single Haul Permits

string
LastUpdateDate

Date on which Permit was last updated

date

Response Formats

application/json, text/json

Sample:
{
  "TrackingNumber": 1.0,
  "PermitNumber": "sample string 2",
  "USDOTNumber": "sample string 3",
  "OperatorRegisteredName": "sample string 4",
  "VehicleLicenseNumbers": "sample string 5",
  "EffectiveDate": "2025-04-03T16:23:44.3300544-04:00",
  "ExpirationDate": "2025-04-03T16:23:44.3300544-04:00",
  "ApplicantName": "sample string 6",
  "SubmissionDate": "2025-04-03T16:23:44.3300544-04:00",
  "AssignedDate": "2025-04-03T16:23:44.3300544-04:00",
  "LastApprovalDate": "2025-04-03T16:23:44.3300544-04:00",
  "IssueDate": "2025-04-03T16:23:44.3300544-04:00",
  "Status": "sample string 7",
  "VehicleType": "sample string 8",
  "AssignedTechnician": "sample string 9",
  "Location": "sample string 10",
  "Latitude": 1.1,
  "Longitude": 1.1,
  "TripType": "sample string 11",
  "LastUpdateDate": "2025-04-03T16:23:44.3300544-04:00"
}

application/xml, text/xml

Sample:
<CommercialVehicleViewModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TrackingNumber>1</TrackingNumber>
  <PermitNumber>sample string 2</PermitNumber>
  <USDOTNumber>sample string 3</USDOTNumber>
  <OperatorRegisteredName>sample string 4</OperatorRegisteredName>
  <VehicleLicenseNumbers>sample string 5</VehicleLicenseNumbers>
  <EffectiveDate>2025-04-03T16:23:44.3300544-04:00</EffectiveDate>
  <ExpirationDate>2025-04-03T16:23:44.3300544-04:00</ExpirationDate>
  <ApplicantName>sample string 6</ApplicantName>
  <SubmissionDate>2025-04-03T16:23:44.3300544-04:00</SubmissionDate>
  <AssignedDate>2025-04-03T16:23:44.3300544-04:00</AssignedDate>
  <LastApprovalDate>2025-04-03T16:23:44.3300544-04:00</LastApprovalDate>
  <IssueDate>2025-04-03T16:23:44.3300544-04:00</IssueDate>
  <Status>sample string 7</Status>
  <CVPermitTypeDesc>sample string 8</CVPermitTypeDesc>
  <AssignedTechnician>sample string 9</AssignedTechnician>
  <DC_location>sample string 10</DC_location>
  <Latitude>1.1</Latitude>
  <Longitude>1.1</Longitude>
  <TripType>sample string 11</TripType>
  <LastUpdateDate>2025-04-03T16:23:44.3300544-04:00</LastUpdateDate>
</CommercialVehicleViewModel>