ContactStoreNoteType
Defines the type for a note within the scope of a contact store.
type ContactStoreNoteType {
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
notes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [ContactStoreNote!]!
uniqueCode: String
}
Fields
ContactStoreNoteType.createdAt
● DateTime!
non-null scalar
The date and time the record was created.
ContactStoreNoteType.createdBy
● String
scalar
UTF-8 string value that represents the username of the user who created the record. Optional.
ContactStoreNoteType.id
● ID!
non-null scalar
The unique identifier for the note type.
ContactStoreNoteType.lastModifiedAt
● DateTime!
non-null scalar
The date and time the record was last modified.
ContactStoreNoteType.lastModifiedBy
● String
scalar
UTF-8 string value that represents the username of the user who last modified the record. Optional.
ContactStoreNoteType.name
● String!
non-null scalar
A UTF-8 string representing the name of the note type.
ContactStoreNoteType.notes
● [ContactStoreNote!]!
non-null object
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 to0
).limit
must be a positive integer from1
to2000
(defaults to100
).
ContactStoreNoteType.notes.limit
● PaginationLimit!
non-null scalar
ContactStoreNoteType.notes.offset
● NonNegativeInt!
non-null scalar
ContactStoreNoteType.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
ContactStoreNote
object ● ContactStoreNoteSetup
object