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