OBJECT

ReceivedFax

A Received Fax

link GraphQL Schema definition

  • type ReceivedFax {
  • # The archived status of the fax
  • archived: Boolean!
  • # Any user added comments on the fax
  • comments: String
  • # The received date of the fax
  • created_at: String!
  • # The number of the sender of the fax
  • from_number: String
  • # The unique identifier of the fax
  • id: ID!
  • # Returns the referral provider name if fax number is found
  • referring_provider_name: String
  • # Whether the received fax has been viewed by the current user
  • viewed_by_current_user: Boolean
  • }