INPUT_OBJECT

SendSystemMessageInput

Specified the fields required to send new system message.

link GraphQL Schema definition

  • input SendSystemMessageInput {
  • # Conversation ID where message should be sent.
  • conversationId: ID
  • # Messaging ID of recipient message should be sent to.
  • recipient: String
  • # Content of the message.
  • body: String
  • # List of the media attachments.
  • media: [MessageMediaInput!]
  • # Desired platform to be sent with.
  • platform: Platform!
  • }