Last active
April 3, 2017 13:46
-
-
Save barek2k2/6242c9ecd758835187e9ba81b14b343b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Patient Unique ID from calling system-alphanumeric 50 – | |
Required – this must always be the unique id your system using for tracking | |
this patient | |
public string ID | |
MDToolbox-Rx – Integration Implementation Guide – CONFIDENTIAL – Copyright 2014 | |
Page 48/// Optional Medical Record Num for patient-alphanumeric 50 | |
public string MRN | |
/// Patient last name-required-alphanumeric 35 | |
public string LastName | |
/// Patient first name-required-alphanumeric 35 | |
/// </summary> | |
public string FirstName | |
/// Patient middle name-alphanumeric 35 - optional | |
public string MiddleName | |
/// Patient suffix alphanumeric 10 - optional | |
public string Suffix | |
/// Patient prefix alphanumeric 10 - optional | |
public string Prefix | |
/// Patient Gender-Allowed Values: M|F | |
public string Gender | |
/// Patient SSN - Optional – if sent must be 9 Digits (no dashes) | |
public string SSN | |
/// Patient Date of Birth-required-date | |
public DateTime DOB | |
/// Patient address alphanumeric 35 - optional | |
public string Addr1 | |
/// Patient address alphanumeric 35 - optional | |
public string Addr2 | |
/// Patient city alphanumeric 35 - optional | |
public string City | |
/// Patient state alphanumeric 2 – optional – if passed must be a | |
valid us state 2 letter code | |
public string State | |
/// Patient zip code-required format: 12345 OR 12345-6789 | |
public string Zip | |
/// Patient home phone-optional – if passed must be in required | |
format: 1112223333 or 1112223333X4.. | |
public string HomePh | |
/// Patient work phone optional-1112223333 or 1112223333X4.. | |
public string WorkPh | |
/// Patient cell phone optional-1112223333 or 1112223333X4.. | |
public string CellPh | |
public string Email | |
/// Patient Unique ID from calling system-alphanumeric 50 | |
MDToolbox-Rx – Integration Implementation Guide – CONFIDENTIAL – Copyright 2014 | |
Page 49/// Only pass this field if you have called MDToolbox eligibility from your | |
screens | |
public string PatientEligID | |
/// Patient's Preferred Pharmacy - Optional - NCPDP ID - | |
alphanumeric | |
/// If your screens allow selecting a preferred pharmacy pass | |
that pharmacy’s id in this field when sending the patient | |
public string PatientPharmacyNCPDPID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment