class Updox::Models::PatientMessage

Constants

LIST_ENDPOINT

Public Class Methods

exists?(patient_id, account_id: ) click to toggle source
# File lib/updox/models/patient_message.rb, line 10
def self.exists?(patient_id, account_id: )
  request(endpoint: LIST_ENDPOINT, body: { patientId: patient_id }, auth: {accountId: account_id}, required_auths: Updox::Models::Auth::AUTH_ACCT).successful?
end
query(patient_id, account_id: ) click to toggle source
# File lib/updox/models/patient_message.rb, line 6
def self.query(patient_id, account_id: )
  request(endpoint: LIST_ENDPOINT, body: { patientId: patient_id }, auth: {accountId: account_id}, required_auths: Updox::Models::Auth::AUTH_ACCT)
end