ENUM

MessageStatus

Supported values for message status.

link GraphQL Schema definition

  • enum MessageStatus {
  • # Indicates that message is successfully delivered.
  • DELIVERED
  • # Indicates that message is queued and ready for sending.
  • QUEUED
  • # Indicates that message is successfully received.
  • RECEIVED
  • # Indicates that message is successfully sent.
  • SENT
  • # Indicates that message is undelivered.
  • UNDELIVERED
  • # Indicates that call is in progress.
  • IN_PROGRESS
  • # Indicates that call is in ringing status.
  • RINGING
  • # Indicates that call is not answered.
  • NO_ANSWER
  • # Indicates that call is canceled.
  • CANCELED
  • # Indicates that call is completed.
  • COMPLETED
  • # Indicates that user was busy during the call.
  • BUSY
  • # Indicates that call was failed.
  • FAILED
  • # Indicated that the message is read (on certain channels).
  • READ
  • }