GET /quoteOrders/new
|
Users, Customers
|
Creates a quote-order 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 /quoteOrders/search
|
Users, Customers
|
Searches the database for quote-orders matching the given request parameters. |
GET /quoteOrders/userSavedSearch
|
Users
|
Retrieves a List of quote-order records based on an existing saved search. |
GET /quoteOrders/{id}
|
Users, Customers
|
Retrieves the quote-order record specified by the ID. |
POST /quoteOrders/makeorder/{quoteId}
|
Users
|
Create an order for the given quote. |
PUT /quoteOrders/create
|
Users, Customers
|
Creates a quote-order record for the given quote-order data. |
PUT /quoteOrders/update
|
Users, Customers
|
Updates a quote-order record for the given quote-order data. |