EventNote
Defines a note associated with an event scoped contact in EventsAir.
A note can capture any information such as telephone conversations, travel preferences, dietary requirements, special requests, and more.
type EventNote {
associatedNoteId: ID
contact: Contact!
content: String!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
type: EventNoteType!
}
Fields
EventNote.associatedNoteId ● ID scalar
The identifier of the associated note in an associated contact store, continuing education contact store or membership contact store. Optional.
EventNote.contact ● Contact! non-null object
The contact who the note belongs to.
EventNote.content ● String! non-null scalar
The text content of the note.
EventNote.createdAt ● DateTime! non-null scalar
The date and time the record was created.
EventNote.createdBy ● String scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
EventNote.customFields ● [CustomField!]! non-null object
A list of custom field values associated with this note.
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).
EventNote.customFields.input ● CustomFieldSearchFilterInput! non-null input
EventNote.customFields.limit ● PaginationLimit! non-null scalar
EventNote.customFields.offset ● NonNegativeInt! non-null scalar
EventNote.id ● ID! non-null scalar
The unique identifier for the note.
EventNote.lastModifiedAt ● DateTime! non-null scalar
The date and time the record was last modified.
EventNote.lastModifiedBy ● String scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
EventNote.type ● EventNoteType! non-null object
The note type for the note.
Member Of
Contact object ● CreateEventNotePayload object ● Event object ● EventNoteType object ● UpdateEventNotePayload object