Skip to content
Last update: May 29, 2025

updateQuoteDynamicProperties mutation

This mutation updates the dynamic properties of a quote.

Arguments

The UpdateQuoteDynamicPropertiesCommandType! represents the input required to update dynamic properties on a quote.

Field Description
command UpdateQuoteDynamicPropertiesCommandType! Contains the quote ID and the dynamic properties to update.

Possible returns

Possible return Description
QuoteType Updated quote information with new properties.
mutation {
  updateQuoteDynamicProperties(
    command: {
      quoteId: "6c03681f-clef-4210-afb0-cd849957aacc",
      dynamicProperties: [
        {
          name: "TestDyn2",
          value: "TestDyn2",
          locale: "English",
          cultureName: "en-US"
        }
      ]
    }
  )
}
{
  data":{
    "updateQuoteDynamicProperties": {
      "id": "6c03681f-clef-4210-afb-cd849957aacc",
      "dynamicProperties": [
        {
          "name": "TestDyn2",
          "value": "TestDyn2"
        },
        {
          "name": "TestDyn1",
          "value": "TestDyn1"
        }
      ]
    }
  }
}