This service provides operations for retrieving and managing tractors. Access to several individually-scoped reports is available too.
name | description |
---|---|
GET /tractors | Retrieves a List of Tractors with a full or partial match to the given value. |
GET /tractors/new | Creates a tractor object with all configured defaults set. This doesn't create a record in the database. Instead, callers of this method can edit the returned object and then pass it back to the create method to actually insert the record in the database. |
GET /tractors/search | Searches the database for tractors matching the given request parameters. |
GET /tractors/userSavedSearch | Retrieves a List of RowTractor objects based on an existing saved search. |
GET /tractors/{id} | Retrieves the Tractor record with the given ID. |
GET /tractors/{id}/preassignments | Retrieves preassignments for the tractor with the specified ID. |
GET /tractors/{id}/revenueReport | Produces a tractor revenue report. |
PUT /tractors/create | Creates a new RowTractor record for the given Tractor data. |
PUT /tractors/update | Updates a RowTractor record for the given data. |