/portal/quotes
List quotes
Returns a paginated list of quotes for the authenticated customer.
Query parameters
| Field | Type |
|---|---|
page
|
integer |
pageSize
|
integer |
status
|
string |
Responses
PortalQuoteListResponse
| Field | Type |
|---|---|
items
|
PortalQuote[] · nullable |
page
|
integer |
pageSize
|
integer |
totalCount
|
integer |
-
Retry-After— Seconds to wait before retrying.
Standard errors:
401
403
Errors
Examples
curl "https://api.erp.fluit.cloud/ecom/portal/quotes" \
-H "Authorization: Bearer $SESSION_TOKEN" \
-H "X-Tenant-Id: $FLUIT_TENANT_ID" \
-H "X-Channel: web"
{
"items": [
{
"currencyCode": "SEK",
"id": "0f8b2c1e-4d3a-4b7e-9f10-2a6c5d8e1b44",
"lineCount": 42,
"quoteDate": "string",
"quoteNumber": "Q-2026-0184",
"status": "string",
"title": "string",
"totalAmount": "299.00",
"totalAmountIncludingTax": "299.00",
"validUntil": "string"
}
],
"page": 1,
"pageSize": 50,
"totalCount": 137
}
Base URL https://api.erp.fluit.cloud/ecom. The response example is generated from the schema: the shape is right, the values are made up.