Skip to main content

MembershipContactStoreNote

Defines a note associated with a membership contact store scoped contact in EventsAir.

A note can capture any information such as telephone conversations, travel preferences, dietary requirements, special requests, and more.

type MembershipContactStoreNote {
contact: MembershipContactStoreContact!
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: MembershipContactStoreNoteType!
}

Fields

MembershipContactStoreNote.contact ● MembershipContactStoreContact! non-null object

The contact who the note belongs to.

MembershipContactStoreNote.content ● String! non-null scalar

The text content of the note.

MembershipContactStoreNote.createdAt ● DateTime! non-null scalar

The date and time the record was created.

MembershipContactStoreNote.createdBy ● String scalar

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

MembershipContactStoreNote.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:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
MembershipContactStoreNote.customFields.input ● CustomFieldSearchFilterInput! non-null input
MembershipContactStoreNote.customFields.limit ● PaginationLimit! non-null scalar
MembershipContactStoreNote.customFields.offset ● NonNegativeInt! non-null scalar

MembershipContactStoreNote.id ● ID! non-null scalar

The unique identifier for the note.

MembershipContactStoreNote.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

MembershipContactStoreNote.lastModifiedBy ● String scalar

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

MembershipContactStoreNote.type ● MembershipContactStoreNoteType! non-null object

The note type for the note.

Member Of

CreateMembershipContactStoreNotePayload object ● MembershipContactStore object ● MembershipContactStoreContact object ● MembershipContactStoreNoteType object ● UpdateMembershipContactStoreNotePayload object