Skip to main content

CreateContactStoreNoteTypeInput

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

input CreateContactStoreNoteTypeInput {
contactStoreId: ID!
containsPersonalData: Boolean
customFields: [CustomFieldInput!]
name: String!
uniqueCode: String
}

Fields

CreateContactStoreNoteTypeInput.contactStoreId ● ID! non-null scalar

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

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

CreateContactStoreNoteTypeInput.customFields ● [CustomFieldInput!] list input

The custom fields to create for the note type. Optional.

CreateContactStoreNoteTypeInput.name ● String! non-null scalar

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

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

createContactStoreNoteType mutation