PHP code example of endeavors / maxmd-registration
1. Go to this page and download the library: Download endeavors/maxmd-registration library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
endeavors / maxmd-registration example snippets
use Endeavors\MaxMD\Registration\Person\Patient;
...
// To easily proof a patient
$person = [
'ssn' => '999999999',
'mobilePhone' => "4805555555",
'email' => '[email protected]',
'street1' => '1234 Fake street',
'city' => 'Fake Town',
'state' => 'AK',
'country' => 'US',
'zip5' => '85412',
'firstName' => 'Bob',
'lastName' => 'Smith',
'ssn4' => '9999',
'dob' => '1985-10-03'
];
$response = Patient::Proof($person);
// check a patient, does not send one time password
$response = Patient::Check($person);
$response = Patient::Provision($person, function($provision, $id) use($username, $password) {
$response = $provision->ProvisionIDProofedPatient("yourown.direct.domain.here", ['idpId' => $id], $username, $password);
// Call get address by username, a bit misleading as this does not return the direct address
$provision->GetPatientAddressByUserName("yourown.direct.domain.here", "freddie");
// get the direct address [email protected]
$directAddress = $provision->DirectAddress();
});
// Proof
// Verify mobile
// Provision
$provision = new \Endeavors\MaxMD\Registration\Person\Registration();
// assume freddie has performed and passed the above steps
$provision->GetPatientAddressByUserName("yourown.direct.domain.here", "freddie");
$directAddress = $provision->DirectAddress();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.