INPUT_OBJECT

CreateNoteInput

link GraphQL Schema definition

  • input CreateNoteInput {
  • clientMutationId: String
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Id of the account.
  • accountId: ID
  • # Id of the contact.
  • contactId: ID
  • # Id of the custom entity record.
  • customEntityId: ID
  • # Id of the lead or opportunity the note is attached to.
  • leadOpptyId: ID
  • # Free-form text body of the note (sanitized HTML allowed).
  • note: String!
  • # Id of the note author.
  • ownerId: ID!
  • # Id of the project.
  • projectId: ID
  • # Id of the quote.
  • quoteId: ID
  • # Revision when entity was lastly changed.
  • revision: Int
  • }