I am successfully retrieving an extension's message list using "message-store". We are able to obtain most of the information we require for faxes in our message box, except for:
1) "Status" for Inbound and Outbound faxes we cannot seem to access properly. We are trying records['messageStatus']. but this returns "Received" for all messages, including those that are "Partial Receive" as displayed in the web-app call-log.
We also tried referencing all of these:
records['to']['messageStatus']
records['to']['faxErrorCode']
records['from']['messageStatus']
records['from']['faxErrorCode']
and they all return as not set (null).
Where / how do we obtain the proper "Status" of a fax message?
2) "To phoneNumber" for Outbound faxes we cannot seem to access. We have tried:
records['subject']
records['to']['phoneNumber']
records['from']['phoneNumber']
and they all return as not set (null).
Where / how do we obtain the proper "phoneNumber" of an outgoing sent fax message?
Thanks