CreateEventNoteInput
Defines the input for creating a note in an event.
input CreateEventNoteInput {
contactId: ID!
content: String!
customFields: [CustomFieldInput!]
eventId: ID!
noteTypeId: ID!
}
Fields
CreateEventNoteInput.contactId
● ID!
non-null scalar
The identifier of the contact to create the note for.
CreateEventNoteInput.content
● String!
non-null scalar
The text content of the note.
CreateEventNoteInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create for the note. Optional.
CreateEventNoteInput.eventId
● ID!
non-null scalar
The identifier of the event the note is associated with.
CreateEventNoteInput.noteTypeId
● ID!
non-null scalar
The identifier of the note type of the note.
Member Of
createEventNote
mutation