Skip to main content

CreateEventNoteTypeInput

Defines the input for creating a note type in an event.

input CreateEventNoteTypeInput {
containsPersonalData: Boolean
customFields: [CustomFieldInput!]
eventId: ID!
name: String!
uniqueCode: String
}

Fields

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

CreateEventNoteTypeInput.customFields ● [CustomFieldInput!] list input

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

CreateEventNoteTypeInput.eventId ● ID! non-null scalar

The identifier of the event the note type is associated with.

CreateEventNoteTypeInput.name ● String! non-null scalar

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

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

createEventNoteType mutation