Advertisement
Guest User

users

a guest
Jan 21st, 2019
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.99 KB | None | 0 0
  1. Admin
  2.     {
  3.         "username": "joel@gmail.com",
  4.         "email": "joel@gmail.com",
  5.         "first_name": "Joel",
  6.         "last_name": "Mendez",
  7.         "is_active": false,
  8.         "profileadmin": {
  9.             "user_type": "Admin",
  10.             "practice_id": PUT ONE OF THE PRACTICE ID HERE,
  11.             "pending": true,
  12.             "status2": "Pending"
  13.         },
  14.         "profilecoordinator": null,
  15.         "profilepatient": null,
  16.         "profilemedical": null
  17.     }
  18.  
  19.  
  20.  
  21. PCP
  22.     {
  23.         "username": "alejandro@gmail.com",
  24.         "email": "alejandro@gmail.com",
  25.         "first_name": "Alejandro",
  26.         "last_name": "Magaña",
  27.         "is_active": false,
  28.         "profileadmin": null,
  29.         "profilecoordinator": null,
  30.         "profilepatient": null,
  31.         "profilemedical": {
  32.             "user_type": "PCP",
  33.             "practice_id": PUT ONE OF THE PRACTICE ID HERE,
  34.             "title": "Dr",
  35.             "specialty": "Torax",
  36.             "npi": "4698135498",
  37.             "office_phone": "7651645982",
  38.             "mobile_phone": "6458129465",
  39.             "pending": true,
  40.             "status2": "Pending"
  41.         }
  42.     }
  43.  
  44.  
  45.  
  46. Patient
  47.     {
  48.         "username": "marco@gmail.com",
  49.         "email": "marco@gmail.com",
  50.         "first_name": "Marco",
  51.         "last_name": "Mejia",
  52.         "is_active": false,
  53.         "profileadmin": null,
  54.         "profilecoordinator": null,
  55.         "profilepatient": {
  56.             "user_type": "Patient",
  57.             "middle_name": "Antonio",
  58.             "title": "Mr",
  59.             "dob": "2019-01-09",
  60.             "gender": "Male",
  61.             "mrn": "4687315249",
  62.             "insurance": "Inbursa",
  63.             "ssn": "498-12-4658",
  64.             "address_1": "Lazaro 65",
  65.             "address_2": "Patria 21",
  66.             "state": "Florida",
  67.             "city": "Alva",
  68.             "zip_code": "33920",
  69.             "home_phone": "9485731524",
  70.             "pending": true,
  71.             "status2": "Pending"
  72.         },
  73.         "profilemedical": null
  74.     }
  75.  
  76.  
  77.  
  78. Receiving Referral Coordinator  
  79.     {
  80.         "username": "jorge@gmail.com",
  81.         "email": "jorge@gmail.com",
  82.         "first_name": "Jorge",
  83.         "last_name": "Ramos",
  84.         "is_active": false,
  85.         "profileadmin": null,
  86.         "profilecoordinator": {
  87.             "user_type": "Receiving Referral Coordinator",
  88.             "practice_id": PUT ONE OF THE PRACTICE ID HERE,
  89.             "title": "Mr",
  90.             "office_phone": "6485127594",
  91.             "mobile_phone": "2164587695",
  92.             "pending": true,
  93.             "status2": "Pending"
  94.         },
  95.         "profilepatient": null,
  96.         "profilemedical": null
  97.     }
  98.  
  99.  
  100.  
  101. Sending Referral Coordinator  
  102.     {
  103.         "username": "rene@gmail.com",
  104.         "email": "rene@gmail.com",
  105.         "first_name": "Rene",
  106.         "last_name": "Signoret",
  107.         "is_active": false,
  108.         "profileadmin": null,
  109.         "profilecoordinator": {
  110.             "user_type": "Sending Referral Coordinator",
  111.             "practice_id": PUT ONE OF THE PRACTICE ID HERE,
  112.             "title": "Mr",
  113.             "office_phone": "5412412365",
  114.             "mobile_phone": "9465872165",
  115.             "pending": true,
  116.             "status2": "Pending"
  117.         },
  118.         "profilepatient": null,
  119.         "profilemedical": null
  120.     }
  121.  
  122.  
  123.  
  124.  
  125. Surgeon  
  126.     {
  127.         "username": "ignacio@gmail.com",
  128.         "email": "ignacio@gmail.com",
  129.         "first_name": "Ignacio",
  130.         "last_name": "Fuentes",
  131.         "is_active": false,
  132.         "profileadmin": null,
  133.         "profilecoordinator": null,
  134.         "profilepatient": null,
  135.         "profilemedical": {
  136.             "user_type": "Surgeon",
  137.             "practice_id": PUT ONE OF THE PRACTICE ID HERE,
  138.             "title": "Dr",
  139.             "specialty": "Neck",
  140.             "npi": "4698213548",
  141.             "office_phone": "6563258945",
  142.             "mobile_phone": "5498521658",
  143.             "pending": true,
  144.             "status2": "Pending"
  145.         }
  146.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement