The SalesQuotes resource allows sales quotes to be listed and viewed. An individual sales quote details can be viewed by appending its identifier (a GUID formatted as XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX) to the URI.
The full range of URIs and HTTP Verbs supported are:
Returns Quotes that start with the specific customer code.
endDate
Returns Quotes created before a specified date, must be UTC format.
modifiedSince
Returns Quotes created or edited after a specified date, must be UTC format.
pageSize
Specifies the page size for pagination. Default page size is 200 quotes.
Note: Requesting large numbers of quotes can be susceptible to poor network performance. Please reduce the page size if you experience delayed requests.
quoteNumber
Returns a single Quote with the specified quote number. If set, it overrides all other filters.
quoteStatus
Returns Quotes with the specified status. Multiple selection can be specified as comma separated.For example: `quoteStatus=Completed,Parked`. If no quoteStatus filter is specified, then we exclude "Deleted" by default.
sourceId
Returns Quotes with the specified sourceId. If set, it overrides all other filters.
startDate
Returns Quotes created after a specified date, must be UTC format.
Note: Date filters should be provided in the ISO format YYYY-MM-DD.
Filters are used by adding the filter and value to the URI: /SalesQuotes?customerCode=ACME&startDate=2012-01-01
Tip: To efficiently retrieve a count of the Quotes that match a filter, specify a pageSize of 0: /SalesQuotes?quoteStatus=Parked,Placed&pageSize=0. The default ordering is by LastModifiedOn descending.
A list of sales orders that are linked to the sales quote. The Guid and OrderNumber for every SalesOrder linked to the SalesQuote will be returned in the list/collection.