CreateCeContactStoreNoteTypeInput
Defines the input for creating a note type in a continuing education contact store.
input CreateCeContactStoreNoteTypeInput {
ceContactStoreId: ID!
containsPersonalData: Boolean
customFields: [CustomFieldInput!]
name: String!
uniqueCode: String
}
Fields
CreateCeContactStoreNoteTypeInput.ceContactStoreId ● ID! non-null scalar
The identifier of the continuing education contact store the note type is associated with.
CreateCeContactStoreNoteTypeInput.containsPersonalData ● Boolean 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. Optional.
The default value is false.
CreateCeContactStoreNoteTypeInput.customFields ● [CustomFieldInput!] list input
The custom fields to create for the note type. Optional.
CreateCeContactStoreNoteTypeInput.name ● String! non-null scalar
A UTF-8 string representing the name of the note type.
CreateCeContactStoreNoteTypeInput.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 a continuing education contact store.
Member Of
createCeContactStoreNoteType mutation