ContactStoreMarketingTag
Defines the template for a marketing tag within the scope of a contact store.
type ContactStoreMarketingTag {
containsPersonalData: Boolean!
createdAt: DateTime!
createdBy: String
group: ContactStoreMarketingGroup!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
marketingRecords(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ContactStoreMarketingRecord!]!
name: String!
subTags: [ContactStoreMarketingSubTag!]
type: MarketingTagType!
uniqueCode: String
}
Fields
ContactStoreMarketingTag.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.
ContactStoreMarketingTag.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
ContactStoreMarketingTag.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
ContactStoreMarketingTag.group
● ContactStoreMarketingGroup!
non-null object
The group the marketing tag is a part of.
ContactStoreMarketingTag.id
● ID!
non-null scalar
The unique identifier for the marketing tag.
ContactStoreMarketingTag.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
ContactStoreMarketingTag.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
ContactStoreMarketingTag.marketingRecords
● [ContactStoreMarketingRecord!]!
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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
ContactStoreMarketingTag.marketingRecords.limit
● PaginationLimit!
non-null scalar
ContactStoreMarketingTag.marketingRecords.offset
● NonNegativeInt!
non-null scalar
ContactStoreMarketingTag.name
● String!
non-null scalar
UTF-8 string value that represents the name of the marketing tag.
ContactStoreMarketingTag.subTags
● [ContactStoreMarketingSubTag!]
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
.
ContactStoreMarketingTag.type
● MarketingTagType!
non-null enum
The type of the tag.
ContactStoreMarketingTag.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 a contact store.
Member Of
ContactStoreMarketingGroup
object ● ContactStoreMarketingRecord
object ● ContactStoreMarketingSetup
object