Quote & Save V2

Get multi-quote by group hash

Retrieves all quotes in a multi-quote group using the group hash.

get/v2/quote/multi/{groupHash}

Path parameters

groupHashstring required

Headers

Authorizationstring

Bearer token

Response

The multi-quote has been successfully retrieved.

groupHashstring

The group_hash linking all quotes

isCompletedboolean

Whether the group was purchased

Example response

{
  "quotes": [
    {
      "quote": {
        "currentPrice": 100.24,
        "coverageOptions": {
          "petOption": {
            "price": 100.24
          },
          "trcOption": {
            "price": 100.24
          },
          "cfarOption": {
            "price": 100.24
          },
          "cfwrOption": {
            "price": 100.24
          },
          "adventureOption": {
            "price": 100.24
          },
          "vacationRentalOption": {
            "price": 100.24
          },
          "carRentalOption": {
            "price": 100.24,
            "pricePerCarPerDay": 100.24
          },
          "medicalUpgrade": {
            "price": 100.24
          }
        },
        "quoteHash": "abc123def456"
      }
    }
  ]
}

Changes

Changed in 2 of the 3 revisions of this API.16

  • e016afb8fdb315See the full diff
    • removed the optional property quotes/items/status from the response with the 200 status

      response-optional-property-removed

    • api tag Quote removed

      api-tag-removed

    • added the required property quotes/items/productName to the response with the 200 status

      response-required-property-added

    • added the required property quotes/items/quote/allOf[CreateQuoteResponseDto]/coverageOptions/allOf[AddonsDto]/cfwrOption to the response with the 200 status

      response-required-property-added

    • added the required property quotes/items/quote/allOf[CreateQuoteResponseDto]/coverageOptions/allOf[AddonsDto]/medicalUpgrade to the response with the 200 status

      response-required-property-added

    • added the required property quotes/items/quote/allOf[CreateQuoteResponseDto]/offerDescription to the response with the 200 status

      response-required-property-added

    This revision also has 4 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added the new optional header request parameter Authorization

      new-optional-request-parameter