This service provides operations that allow callers to create, retrieve, update and delete quotes in LoadMaster.
name | description |
---|---|
DELETE /quotes/{id} | Deletes a quote record. |
GET /quotes/new | Creates a quote 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 /quotes/search | Finds quote records with the given criteria.
For example, /quotes/search?bill_distance=>=t100&customer_id=mc*
would find quotes from customer IDs starting with 'mc' with a greater than
or equal to 100 mile billing distance. |
GET /quotes/{id} | Retrieves the quote record identified by the given ID value. |
PUT /quotes/create | Creates a new quote record. |
PUT /quotes/update | Updates a quote record. |