Skip to main content

MembershipContactStoreNoteType

Defines the type for a note within the scope of a membership contact store.

type MembershipContactStoreNoteType {
createdAt: DateTime!
createdBy: String
id: ID!
lastModifiedAt: DateTime!
lastModifiedBy: String
name: String!
notes(
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [MembershipContactStoreNote!]!
uniqueCode: String
}

Fields

MembershipContactStoreNoteType.createdAt ● DateTime! non-null scalar

The date and time the record was created.

MembershipContactStoreNoteType.createdBy ● String scalar

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

MembershipContactStoreNoteType.id ● ID! non-null scalar

The unique identifier for the note type.

MembershipContactStoreNoteType.lastModifiedAt ● DateTime! non-null scalar

The date and time the record was last modified.

MembershipContactStoreNoteType.lastModifiedBy ● String scalar

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

MembershipContactStoreNoteType.name ● String! non-null scalar

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

MembershipContactStoreNoteType.notes ● [MembershipContactStoreNote!]! 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 to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
MembershipContactStoreNoteType.notes.limit ● PaginationLimit! non-null scalar
MembershipContactStoreNoteType.notes.offset ● NonNegativeInt! non-null scalar

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

MembershipContactStoreNote object ● MembershipContactStoreNoteSetup object