Skip to main content

EventMarketingTag

Defines the template for a marketing tag within the scope of an event.

type EventMarketingTag {
associatedMarketingTagId: ID
containsPersonalData: Boolean!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
group: EventMarketingGroup!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
marketingRecords(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingRecord!]!
name: String!
subTags: [EventMarketingSubTag!]
type: MarketingTagType!
uniqueCode: String
}

Fields

EventMarketingTag.associatedMarketingTagId ● ID scalar

The identifier of the associated marketing tag in an associated contact store, continuing education contact store or membership contact store. Optional.

EventMarketingTag.containsPersonalData ● Boolean! non-null 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.

EventMarketingTag.createdAt ● DateTime! non-null scalar

The date and time the record was created.

EventMarketingTag.createdBy ● String scalar

UTF-8 string value that represents the username of the user who created the record. Optional.

EventMarketingTag.customFields ● [CustomField!]! non-null object

A list of custom field values associated with this marketing tag.

CustomFields and CustomFieldDefinitions can be matched through the definitionId and id fields, respectively.

See CustomFieldSearchFilterInput for details on how the optional input argument can be used to filter custom fields.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventMarketingTag.customFields.input ● CustomFieldSearchFilterInput! non-null input
EventMarketingTag.customFields.limit ● PaginationLimit! non-null scalar
EventMarketingTag.customFields.offset ● NonNegativeInt! non-null scalar

EventMarketingTag.group ● EventMarketingGroup! non-null object

The group the marketing tag is a part of.

EventMarketingTag.id ● ID! non-null scalar

The unique identifier for the marketing tag.

EventMarketingTag.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

EventMarketingTag.lastModifiedBy ● String scalar

UTF-8 string value that represents the username of the user who last modified the record. Optional.

EventMarketingTag.marketingRecords ● [EventMarketingRecord!]! non-null object

A list of marketing records for this marketing tag.

Optionally, the offset and limit arguments can be used to page through multiple items:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
EventMarketingTag.marketingRecords.limit ● PaginationLimit! non-null scalar
EventMarketingTag.marketingRecords.offset ● NonNegativeInt! non-null scalar

EventMarketingTag.name ● String! non-null scalar

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

EventMarketingTag.subTags ● [EventMarketingSubTag!] list object

The sub-tags associated with the marketing tag. Optional.

For marketing tags where type is SUB_TAG, it will contain the values that can be assigned to the marketing tag. For other marketing tag types, it will be null.

EventMarketingTag.type ● MarketingTagType! non-null enum

The type of the tag.

EventMarketingTag.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

EventMarketingGroup object ● EventMarketingRecord object ● EventMarketingSetup object