Sign Customiser

Returns one quote request or custom-design submission belonging to the authenticated Store. Requires quotes:read.

GET/api/v3/quotes/{quote_id}

Overview

The id is the submission's immutable identifier, as returned by the list operation. An id that belongs to another store, an id that never existed, and an id whose owning store the platform cannot prove all return the same 404, so a caller cannot use this operation to discover another store's data. The operation is read-only and always safe to retry.

Authorisation

Bearer token required. Include it in theAuthorization header.

Required scope: quotes:read

Path parameters

quote_idstringpathrequired

The submission id, from the list quotes operation.

Example: 8123

Retrieve a quote
curl https://web.signcustomiser.com/api/v3/quotes/8123 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response
{
  "data": {
    "object": "quote",
    "id": 8123,
    "type": "quote",
    "submission_number": 14,
    "customiser_id": 42,
    "form_id": 7,
    "responses": [
      {
        "field_id": "3f2a9c1e-5d6b-4a7c-8e9f-0a1b2c3d4e5f",
        "label": "Email",
        "input_type": "email",
        "value": "ada@example.com"
      }
    ],
    "files": [
      {
        "field_id": "7c1d4b2a-9e8f-4c3d-b5a6-1f2e3d4c5b6a",
        "file_index": 0,
        "kind": "customer_upload",
        "original_filename": "artwork.pdf",
        "url": "https://assets.signcustomiser.com/form-files/Qp7Lm2.pdf"
      }
    ],
    "design": {
      "text": "OPEN",
      "text_align": "Centre",
      "text_orientation": "Horizontal",
      "font": "Brush Script",
      "colour": "Warm White",
      "backlight": null,
      "material": "Acrylic",
      "letter_type": "Front lit",
      "support": "Clear acrylic",
      "support_finish": "Frosted",
      "jacket": null,
      "mounting": "Wall screws",
      "mounting_colour": null,
      "size_display": "Medium / 80cm X 30cm",
      "final_dimensions": "80cm X 30cm / 31.5in X 11.8in",
      "quoted_price_amount": 29900,
      "quoted_price_display": "$299.00",
      "currency": "AUD"
    },
    "ad_click_ids": {
      "gclid": "CjwKCAjw7p6aBhAoBhAAEiwA"
    },
    "utm_params": {
      "utm_source": "google",
      "utm_medium": "cpc"
    },
    "created_at": "2026-07-19T01:00:00Z"
  },
  "links": {
    "self": "https://web.signcustomiser.com/api/v3/quotes/8123",
    "documentation": "https://www.signcustomiser.com/help/api/"
  },
  "meta": {
    "api_version": "v3",
    "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
  }
}