Skip to main content

CreateContactStoreNoteInput

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

input CreateContactStoreNoteInput {
contactId: ID!
contactStoreId: ID!
content: String!
customFields: [CustomFieldInput!]
noteTypeId: ID!
}

Fields

CreateContactStoreNoteInput.contactId ● ID! non-null scalar

The identifier of the contact store contact to create the note for.

CreateContactStoreNoteInput.contactStoreId ● ID! non-null scalar

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

CreateContactStoreNoteInput.content ● String! non-null scalar

The text content of the note.

CreateContactStoreNoteInput.customFields ● [CustomFieldInput!] list input

The custom fields to create for the note. Optional.

CreateContactStoreNoteInput.noteTypeId ● ID! non-null scalar

The identifier of the note type of the note.

Member Of

createContactStoreNote mutation