INPUT_OBJECT

CreateOrUpdateQuoteInput

link GraphQL Schema definition

  • input CreateOrUpdateQuoteInput {
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Id of the currency exchange rate list applied to this quote.
  • currencyExchangeRatesListId: ID
  • # Free-form description of the quote.
  • description: String
  • # Date after which the quote is no longer considered valid.
  • expirationDate: Date
  • # True when the quote has been archived (lost). Archived quotes remain readable
  • # but are hidden from active lists and cannot be edited until reactivated.
  • isArchived: Boolean
  • # Name of the entity and its default text representation.
  • name: String
  • # Id of the opportunity.
  • opptyId: ID
  • # Id of the quote owner.
  • ownerId: ID
  • # Id of the product currency.
  • productCurrencyId: ID
  • # Id of the product price list.
  • productPriceListId: ID
  • # Product sections on Opportunity in json format
  • productSections: JSONString
  • # Free-text company email captured at quote creation when no Account record has
  • # been linked yet.
  • quickAccountEmail: String
  • # Free-text company name captured at quote creation when no Account record has
  • # been linked yet.
  • quickAccountName: String
  • # Free-text company phone captured at quote creation when no Account record has
  • # been linked yet.
  • quickAccountPhone: String
  • # Free-text contact name captured at quote creation when no Contact record has
  • # been linked yet.
  • quickContactName: String
  • # Free-text contact email captured at quote creation when no Contact record has
  • # been linked yet.
  • quickEmail: String
  • # Free-text contact phone captured at quote creation when no Contact record has
  • # been linked yet.
  • quickPhone: String
  • # Id of the quote type.
  • quoteTypeId: ID
  • # Free-form note explaining why the quote was archived (lost).
  • reasonOfCloseDescription: String
  • # Id of the reason-of-close value.
  • reasonOfCloseId: ID
  • # Sharing model applied on top of the owner/unit visibility (e.g. shared with
  • # selected sales units or selected users). The matching sharing_units /
  • # sharing_clients lists control who is granted access.
  • shareMode: ShareModeEnum
  • # Id of the quote-process step.
  • stepId: ID
  • # Id of the sales unit.
  • unitId: ID
  • # Revision number of the quote, incremented when a new version of the same quote
  • # is created.
  • version: Int
  • customFields: JSONString
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Total monetary value of the quote in the team space base currency, with the
  • # foreign value and currency code preserved alongside.
  • totalAmount: CurrencyForeignFieldInput
  • # Product line items on this quote. Each entry holds the product, quantity, price
  • # and discount that contribute to total_amount.
  • productRelations: [CreateOrUpdateOpptyProductRelationNoBackrefInput!]
  • # Contacts linked to this quote.
  • contactRelations: [CreateQuoteContactRelationNoQuoteBackrefInput!]
  • # Accounts linked to this quote, including the primary-account flag.
  • accountRelations: [CreateQuoteAccountRelationNoQuoteBackrefInput!]
  • # Documents linked to this quote.
  • documents: [CreateCloudObjectRelationNoBackrefInput!]
  • # Sales units that have been granted shared access to this quote. Editable only
  • # when share_mode allows unit sharing.
  • sharingUnits: [CreateQuoteSharingSalesUnitRelationNoQuoteBackrefInput!]
  • # Users that have been granted shared access to this quote. Editable only when
  • # share_mode allows user sharing.
  • sharingClients: [CreateQuoteSharingClientRelationNoQuoteBackrefInput!]
  • isActiveInOpportunity: Boolean
  • # Saved view profiles this quote currently matches.
  • staticProfiles: [CreateProfileRelationNoQuoteBackrefInput!]
  • }