Skip to Content

Quotes List

GET/api/v1/quotes/AccessExpress

Returns a list of quotes for a particular customer with filtering, sorting, and pagination options.

Auth Scope
urn:grt:accessexpress
Content-Type
application/json
Rate Limit
60 req/min

Headers

HeaderValue
AuthorizationBearer access-token

Query Parameters

Filtering Parameters

ParameterTypeRequiredDescription
searchstringNoA general search term to filter quotes by name or request number
statusarray of stringsNoFilters quotes by one or more statuses. Acceptable status options include Checking availability, Order services, Closed, and Quote expired
requesterarray of stringsNoFilters quotes by requester identifiers or names. Example: "Requester1,Requester2"
start_datedatetimeNoFilters quotes submitted on or after this ISO-formatted date. Example: 2024-01-01T00:00:00
end_datedatetimeNoFilters quotes submitted on or before this ISO-formatted date. Example: 2024-12-31T23:59:59
granted_tenant_macnumstringNoThe company macnum on whose behalf the action is performed

Sorting Parameters

ParameterTypeRequiredDescription
name_orderstringNoSorts results by quote name. Accepts values asc or desc
request_number_orderstringNoSorts results by request number. Accepts values asc or desc
status_orderstringNoSorts results by quote status. Accepts values asc or desc
last_update_orderstringNoSorts results by last updated timestamp. Accepts values asc or desc
date_submitted_orderstringNoSorts results by submission date. Accepts values asc or desc
requester_orderstringNoSorts results by requester. Accepts values asc or desc

Pagination Parameters

ParameterTypeRequiredDescription
pageintegerNoThe page number of the results to return
page_sizeintegerNoThe number of results to return per page

Response

If the request is successful, a 200 OK status code is returned.

Success Response (200 OK)

Response Fields

FieldTypeDescription
idUUIDUnique identifier for the quote request
request_numberintegerRequest number for the quote
statusstringCurrent status of the quote. Values: Checking availability, Order services, Closed, Quote expired
formal_quote_expires_atdatetimeISO 8601 timestamp indicating when the formal quote expires

Code Examples

Errors

HTTP StatusError DescriptionResolution
401Authentication FailedVerify your access token is valid and included in the Authorization header with the "Bearer " prefix.
403Permission DeniedYou do not have permissions to view quote results. Check your API scope (urn:grt:accessexpress).
429Rate Limit ExceededYou have exceeded the rate limit of 60 requests per minute. Check the Retry-After header in the response.
Last updated on