GraphQL INPUT_OBJECT

UpdateMvtCampaignCandidateInput

Input for update MVT campaign candidate.

link Definition

  • input UpdateMvtCampaignCandidateInput {
  • # ID of the candidate.
  • id: Int!
  • # Name of the MVT campaign candidate.
  • name: String
  • # Set to false if the MVT campaign should not be active.
  • isActive: Boolean
  • # Set to true if this candidate is the control candidate.
  • isControlCandidate: Boolean
  • # HTTP referer pattern.
  • httpRefererPattern: String
  • # Notes.
  • description: String
  • # Define a specific region for the candidate. This can be used to test different
  • # designs or configurations in different regions.
  • regionConfigurationId: Int
  • # Define a specific language for the candidate.
  • languageId: CheckoutLanguageEnum
  • # Define a specific browser for the candidate.
  • browserId: String
  • # Define a specific operating system for the candidate.
  • operatingSystemId: OperatingSystemTreeElementEnum
  • # Define an additional parameter for the candidate.
  • parameterName: String
  • # Determines how often this candidate is used in the campaign. A higher number
  • # means that more customers are given this candidate.
  • weight: Int
  • # Select whether or not to restrict the candidate for affiliates.
  • affiliateSetting: CandidateAffiliateSettingEnum
  • # Create a destination URL for the candidate. You can either create the link in
  • # Link Generator and copy and paste it here, or you can create the URL manually.
  • # This URL is not visible to customers.
  • destinationUrl: String
  • }