CeContactStoreNote
Defines a note associated with a continuing education 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 CeContactStoreNote {
contact: CeContactStoreContact!
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: CeContactStoreNoteType!
}
Fields
CeContactStoreNote.contact
● CeContactStoreContact!
non-null object
The contact who the note belongs to.
CeContactStoreNote.content
● String!
non-null scalar
The text content of the note.
CeContactStoreNote.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
CeContactStoreNote.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
CeContactStoreNote.customFields
● [CustomField!]!
non-null object
A list of custom field values associated with this note.
CustomField
s and CustomFieldDefinition
s 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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
CeContactStoreNote.customFields.input
● CustomFieldSearchFilterInput!
non-null input
CeContactStoreNote.customFields.limit
● PaginationLimit!
non-null scalar
CeContactStoreNote.customFields.offset
● NonNegativeInt!
non-null scalar
CeContactStoreNote.id
● ID!
non-null scalar
The unique identifier for the note.
CeContactStoreNote.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
CeContactStoreNote.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
CeContactStoreNote.type
● CeContactStoreNoteType!
non-null object
The note type for the note.
Member Of
CeContactStore
object ● CeContactStoreContact
object ● CeContactStoreNoteType
object ● CreateCeContactStoreNotePayload
object ● UpdateCeContactStoreNotePayload
object