Skip to main content

UpdateContactStoreNoteTypeInput

Defines the input for updating a note type in a contact store.

input UpdateContactStoreNoteTypeInput {
contactStoreId: ID!
containsPersonalData: Boolean
name: String
noteTypeId: ID!
uniqueCode: String
}

Fields

UpdateContactStoreNoteTypeInput.contactStoreId ● ID! non-null scalar

The identifier of the contact store the note type is associated with.

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

UpdateContactStoreNoteTypeInput.name ● String scalar

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

UpdateContactStoreNoteTypeInput.noteTypeId ● ID! non-null scalar

The identifier of the note type.

UpdateContactStoreNoteTypeInput.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 contact store.

Member Of

updateContactStoreNoteType mutation