Skip to main content

EventMarketingRecord

Defines a marketing record associated with an event scoped contact.

type EventMarketingRecord {
associatedMarketingRecordId: ID
contact: Contact!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
group: EventMarketingGroup!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
subTag: EventMarketingSubTag
tag: EventMarketingTag!
type: MarketingTagType!
value: JSON
}

Fields

EventMarketingRecord.associatedMarketingRecordId ● ID scalar

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

EventMarketingRecord.contact ● Contact! non-null object

The contact who the marketing record belongs to.

EventMarketingRecord.createdAt ● DateTime! non-null scalar

The date and time the record was created.

EventMarketingRecord.createdBy ● String scalar

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

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

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

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).
EventMarketingRecord.customFields.input ● CustomFieldSearchFilterInput! non-null input
EventMarketingRecord.customFields.limit ● PaginationLimit! non-null scalar
EventMarketingRecord.customFields.offset ● NonNegativeInt! non-null scalar

EventMarketingRecord.group ● EventMarketingGroup! non-null object

The marketing group the record is a part of.

EventMarketingRecord.id ● ID! non-null scalar

The unique identifier for the marketing record.

EventMarketingRecord.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

EventMarketingRecord.lastModifiedBy ● String scalar

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

EventMarketingRecord.name ● String! non-null scalar

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

EventMarketingRecord.subTag ● EventMarketingSubTag object

The marketing sub-tag that defines this record. Optional.

Where type is SUB_TAG, it will contain the value that is assigned to the record. For other marketing tag types, it will be null.

EventMarketingRecord.tag ● EventMarketingTag! non-null object

The marketing tag that defines this record.

EventMarketingRecord.type ● MarketingTagType! non-null enum

Represents the type of the marketing tag.

EventMarketingRecord.value ● JSON scalar

The marketing record value returned as a JSON value. Optional.

For marketing records of type TAG_ONLY this will be null.

Member Of

Contact object ● CreateEventMarketingRecordPayload object ● Event object ● EventMarketingTag object ● UpdateEventMarketingRecordPayload object