Weblutions Documentation
Weblutions Main Site Contact Us Our Discord
Some pages are still pending proper formatting, if required refer to the legacy documentation website.
FaxStore IconFaxStore

Quotes

By Josh M. 1 min 0

The Quotes API for FaxStore allows issuing and retrieving quotes for users. It streamlines the process of managing and delivering price estimates directly to your customers.

GET /api/quotes

Returns all quotes created in an array.

Parameters:

authorization[Header] A valid API token

Response: [Expand]

GET /api/quotes/:id

Returns an object of the specified quote.

Parameters:

authorization[Header] A valid API token
id[URL] The ID of a quote to fetch

Response: [Expand]

POST /api/quote

Creates a quote with the provided data and returns it. Note agree field can't be entered via the API as it is for user agreement in a quote.

Parameters:

authorization[Header] A valid API token
title[Body] The title of the quote
description[Body] An optional description of the quote
price[Body] The proposed price to include

Response: [Expand]