INPUT_OBJECT

CreateEmailMessageContentMutationInput

The input object that defines the fields for the createEmailMessageContent mutation.

link GraphQL Schema definition

  • input CreateEmailMessageContentMutationInput {
  • # A supported language.
  • language: Language!
  • # A short sentence that will be shown as a preview in compatible email clients.
  • inbox_preview: String
  • # The subject.
  • subject: String!
  • # The body.
  • body: Text!
  • # The ID of an EmailMessage.
  • email_message_id: Int64Bit!
  • # A list of file IDs to be associated with this object. These must first have been
  • # uploaded to the /files endpoint and must be currently unassociated.
  • files: [AssociateFileMutationInput]
  • }

link Require by