Skip to main content

CeContactStoreMarketingRecord

Defines a marketing record associated with a continuing education contact store scoped contact.

type CeContactStoreMarketingRecord {
contact: CeContactStoreContact!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
group: CeContactStoreMarketingGroup!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
subTag: CeContactStoreMarketingSubTag
tag: CeContactStoreMarketingTag!
type: MarketingTagType!
value: JSON
}

Fields

CeContactStoreMarketingRecord.contact ● CeContactStoreContact! non-null object

The contact who the marketing record belongs to.

CeContactStoreMarketingRecord.createdAt ● DateTime! non-null scalar

The date and time the record was created.

CeContactStoreMarketingRecord.createdBy ● String scalar

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

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

CeContactStoreMarketingRecord.group ● CeContactStoreMarketingGroup! non-null object

The marketing group the record is a part of.

CeContactStoreMarketingRecord.id ● ID! non-null scalar

The unique identifier for the marketing record.

CeContactStoreMarketingRecord.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

CeContactStoreMarketingRecord.lastModifiedBy ● String scalar

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

CeContactStoreMarketingRecord.name ● String! non-null scalar

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

CeContactStoreMarketingRecord.subTag ● CeContactStoreMarketingSubTag 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.

CeContactStoreMarketingRecord.tag ● CeContactStoreMarketingTag! non-null object

The marketing tag that defines this record.

CeContactStoreMarketingRecord.type ● MarketingTagType! non-null enum

Represents the type of the marketing tag.

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

CeContactStore object ● CeContactStoreContact object ● CeContactStoreMarketingTag object ● CreateCeContactStoreMarketingRecordPayload object ● UpdateCeContactStoreMarketingRecordPayload object