EventMarketingGroup
Defines the marketing group for a group of marketing tags within the scope of an event.
type EventMarketingGroup {
associatedMarketingGroupId: ID
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
tags(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventMarketingTag!]!
uniqueCode: String
}
Fields
EventMarketingGroup.associatedMarketingGroupId ● ID scalar
The identifier of the associated marketing group in an associated contact store, continuing education contact store or membership contact store. Optional.
EventMarketingGroup.createdAt ● DateTime! non-null scalar
The date and time the record was created.
EventMarketingGroup.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
EventMarketingGroup.customFields ● [CustomField!]! non-null object
A list of custom field values associated with this marketing group.
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:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
EventMarketingGroup.customFields.input ● CustomFieldSearchFilterInput! non-null input
EventMarketingGroup.customFields.limit ● PaginationLimit! non-null scalar
EventMarketingGroup.customFields.offset ● NonNegativeInt! non-null scalar
EventMarketingGroup.id ● ID! non-null scalar
The unique identifier for the marketing group.
EventMarketingGroup.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
EventMarketingGroup.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
EventMarketingGroup.name ● String! non-null scalar
UTF-8 string value that represents the name of the marketing group.
EventMarketingGroup.tags ● [EventMarketingTag!]! non-null object
The marketing tags associated with the marketing group.
EventMarketingGroup.tags.limit ● PaginationLimit! non-null scalar
EventMarketingGroup.tags.offset ● NonNegativeInt! non-null scalar
EventMarketingGroup.uniqueCode ● String scalar
A customer supplied, UTF-8 string value that represents a unique code for the marketing group. Optional.
The value must be unique across all marketing groups for an event.
Member Of
EventMarketingRecord object ● EventMarketingSetup object ● EventMarketingTag object