Skip to main content

QuoteConfig

Returns a list of input parameters that could beare used towhen renderconfiguring UIthe elementsdifferent forbenefits datawithin capturethe /quote configurationcalculation of a quote.request. The returned input parameters are defined by their type (eg. dropdown list) and their accepted option values, and are grouped by the benefits they are relevant for. This data rarelycould changes.be used to render UI elements for data capture during the configuration of a quote.

Request


  • Type: GET
  • Path: /quoteConfig
  • URL (Test env): https://quote-engine-test.blackfin.tools/quoteConfig

Authentication

A security user token is required to authenticate the request source. BlackFin will generate this and provide it separately.

  • Header parameter name: userToken

 

Response


✅ Success

JSON Body

INSERT HERE

Examples
Success Response
{
  "quoteConfig": {
    "benefits": [
      {
        "benefitId": 0,
        "benefitName": "string",
        "inputs": [
          {
            "inputId": "string",
            "inputLabel": "string",
            "inputType": "string",
            "inputOptions": [
              {
                "name": "string",
                "value": "string"
              }
            ]
          }
        ]
      }
    ]
  }
}