;


Account
Provides methods for interacting with patient accounts in the PAC Metrix system.

api/Account/GetAllForPatient - GET Returns all of the accounts for a specific patient using the PAC Metrix internal id.
api/Account - POST Creates or updates an account on an existing PAC Metrix patient.

Method Details

Method: https://login.pac-metrix.com/api/api/Account/GetAllForPatient (GET)
Usage:
Use this method to get a list of all of the accounts connected with a patient for whom you know the internal PAC Metrix id.
Inputs:
stringapikey Obtained through successful authentication.
intpatientprimarykey The internal PAC Metrix patient id.
Returns:
Account[] See API Objects for details.
Method: https://login.pac-metrix.com/api/api/Account (POST)
Usage:
Use this to add or update an account on an existing PAC Metrix patient. NOTE: The Account.PatientPrimaryKey must be populated with a valid internal PAC Metrix patient id for this method to succeed.
Inputs:
stringapikey Obtained through successful authentication.
CreateAccountRequest[Request Content] Data to be posted. See ApiObjects for details.
Returns:
BasicActionReply See API Objects for details.
;