Skip to main content

UpdateEventMarketingTagInput

Defines the input for updating a marketing tag in an event.

input UpdateEventMarketingTagInput {
containsPersonalData: Boolean
customFields: [CustomFieldInput!]
eventId: ID!
groupId: ID
name: String
tagId: ID!
uniqueCode: String
}

Fields

UpdateEventMarketingTagInput.containsPersonalData ● Boolean scalar

A flag indicating whether the marketing tag includes sensitive personal data. It is important for event managers to review any additional marketing tags that they have created and marking those tags as containing personal data. This is used by EventsAir to identify these fields for reporting to attendees, and when anonymizing or deleting a contact record for data privacy reasons. Optional.

UpdateEventMarketingTagInput.customFields ● [CustomFieldInput!] list input

The custom fields to update or create for the marketing tag. Optional.

UpdateEventMarketingTagInput.eventId ● ID! non-null scalar

The identifier of the event the marketing tag is associated with.

UpdateEventMarketingTagInput.groupId ● ID scalar

The group the marketing tag is a part of. Optional.

UpdateEventMarketingTagInput.name ● String scalar

UTF-8 string value that represents the name of the marketing tag. Optional.

UpdateEventMarketingTagInput.tagId ● ID! non-null scalar

The unique identifier for the marketing tag.

UpdateEventMarketingTagInput.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the marketing tag. Optional.

The value must be unique across all marketing tags for an event.

Member Of

updateEventMarketingTag mutation