Skip to main content

EventNoteType

Defines the type for a note within the scope of an event.

type EventNoteType {
associatedNoteTypeId: ID
containsPersonalData: Boolean!
createdAt: DateTime!
createdBy: String
customFields(
input: CustomFieldSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [CustomField!]! @deprecated
customFieldsPaged(
filterInput: CustomFieldAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): CustomFieldPage!
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
notes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [EventNote!]! @deprecated
notesPaged(
filterInput: NoteAdvancedSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): EventNotePage!
uniqueCode: String
}

Fields

EventNoteType.associatedNoteTypeId ● ID scalar

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

EventNoteType.containsPersonalData ● Boolean! non-null scalar

A flag indicating whether the note type includes sensitive 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.

EventNoteType.createdAt ● DateTime! non-null scalar

The date and time the record was created.

EventNoteType.createdBy ● String scalar

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

EventNoteType.customFields ● [CustomField!]! deprecated non-null object

DEPRECATED

Use customFieldsPaged instead. It returns the same custom fields together with pagination metadata (total count, has-next-page) and exposes a richer filter input supporting both inclusion and exclusion semantics (eq, ne, in, notIn). This field will be removed in a future release.

A list of custom field values associated with this note type.

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

EventNoteType.customFieldsPaged ● CustomFieldPage! non-null object

Custom fields associated with this record that match the filter criteria specified in the optional filterInput argument, returned together with pagination metadata.

See CustomFieldAdvancedSearchFilterInput for details on how the filterInput argument can be used. The filter supports both inclusion and exclusion semantics (eq, ne, in, notIn).

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

Throws an error with code:

  • BAD_USER_INPUT if all fields in the filterInput argument have a combined total number of values exceeding 1,000.
EventNoteType.customFieldsPaged.filterInput ● CustomFieldAdvancedSearchFilterInput! non-null input
EventNoteType.customFieldsPaged.limit ● PaginationLimit! non-null scalar
EventNoteType.customFieldsPaged.offset ● NonNegativeInt! non-null scalar

EventNoteType.id ● ID! non-null scalar

The unique identifier for the note type.

EventNoteType.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

EventNoteType.lastModifiedBy ● String scalar

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

EventNoteType.name ● String! non-null scalar

A UTF-8 string representing the name of the note type.

EventNoteType.notes ● [EventNote!]! deprecated non-null object

DEPRECATED

Use notesPaged instead. It returns the same notes together with pagination metadata (total count, has-next-page) and exposes a richer filter input supporting both inclusion and exclusion semantics (eq, ne, in, notIn). This field will be removed in a future release.

A list of notes for this note type.

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).
EventNoteType.notes.limit ● PaginationLimit! non-null scalar
EventNoteType.notes.offset ● NonNegativeInt! non-null scalar

EventNoteType.notesPaged ● EventNotePage! non-null object

Notes for this note type that match the filter criteria specified in the optional filterInput argument, returned together with pagination metadata.

Returns an EventNotePage wrapper exposing the matched items alongside pageInfo (total count, has-next-page, has-previous-page).

See NoteAdvancedSearchFilterInput for details on how the filterInput argument can be used. The filter supports both inclusion and exclusion semantics (eq, ne, in, notIn) — for example, "all notes whose id is not in a specific list."

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

Throws an error with code: BAD_USER_INPUT if all fields in the filterInput argument have a combined total number of values exceeding 1,000.

EventNoteType.notesPaged.filterInput ● NoteAdvancedSearchFilterInput! non-null input
EventNoteType.notesPaged.limit ● PaginationLimit! non-null scalar
EventNoteType.notesPaged.offset ● NonNegativeInt! non-null scalar

EventNoteType.uniqueCode ● String scalar

A customer supplied, UTF-8 string value that represents a unique code for the note type. Optional.

The value must be unique across all note types for an event.

Member Of

CreateEventNoteTypePayload object ● EventNote object ● EventNoteSetup object ● EventNoteTypePage object ● UpdateEventNoteTypePayload object