Skip to content

[v4] messages.messages

Rich Infante edited this page Apr 19, 2018 · 2 revisions

This report gets information about messages for an iOS messages conversation.

  • Name: messages.messages
  • Parameters
    • backup can be a string representing the backup ID, or a Backup instance.
    • id Chat ID to extract messages from. see messages.conversations chatId field.
  • Output: Array of Objects formatted like below.
{
  id: Number, // Message ID
  date: String, // Sent Date, returns "2001-01-01 00:00:00" if unable to find.
  sender: String, // Sender's phone/email, or "Me".
  text: String, // Message content 
  dateRead: String, // Date read string. returns "2001-01-01 00:00:00" if unable to find.
  dateDelivered: String, // Dae delivered string. returns "2001-01-01 00:00:00" if unable to find.
  isDelivered: Boolean, // is Delivered?
  isFinished: Boolean, // is Finished?
  isFromMe: Boolean, // is from Me? i.e. is the device owner the sender?
  isRead: Boolean, // Is it read?
  isSent: Boolean, // Is it sent?
  attachments: Array // Attachments array
}