Difference between revisions of "Template:Json Patients Block - CSharp"

From Updox API
Jump to: navigation, search
Line 1: Line 1:
  patients = [
+
    patients = [
 
       {
 
       {
 
         id = 123, // not used and can be ignored
 
         id = 123, // not used and can be ignored

Revision as of 21:11, 11 December 2015

   patients = [
     {
       id = 123, // not used and can be ignored
       chartNumber = 234,
       internalId = 345,
       firstName = "firstName",
       middleName = "middleName",
       lastName = "lastName",
       sex = "male",
       address1 = "address1",
       address2 = "address2",
       city = "Columbus",
       state = "OH",
       zip5 = "43017",
       dob = "2015-12-30",
       emailAddress = "valid@email.com",
       homePhone = "6141231234",
       workPhone = "6149879876",
       workExtension = "x112",
       mobileNumber = "6145675678",
       faxNumber = "6145435432",
       active = true,
       contactType = "patient",
       defaultProvider = "defaultProvider",
       maritalStatus = "married",
       primaryInsurance = {
         companyName = "companyName1",
         phoneNumber = "6141231234",
         address1 = "address1",
         address2 = "address2",
         city = "Columbus",
         state = "OH",
         zip = "43017",
         policyNumber = "policyNumber",
         groupNumber = "groupNumber",
         planName = "planName",
         groupName = "groupName",
         effectiveDate = "2015-12-30",
         expirationDate = "2016-12-30",
         guarantorRelationship = "guarantorRelationship",
         guarantorName = "guarantorName",
         guarantorFirstName = "guarantorFirstName",
         guarantorMiddleName = "guarantorMiddleName",
         guarantorLastName = "guarantorLastName",
         guarantorDob = "1978-10-20",
         guarantorGender = "male",
         copayAmount = 50
       },
       secondaryInsurance = {
         companyName = "companyName2",
         phoneNumber = "6141231234",
         address1 = "address1",
         address2 = "address2",
         city = "Columbus",
         state = "OH",
         zip = "43017",
         policyNumber = "policyNumber",
         groupNumber = "groupNumber",
         planName = "planName",
         groupName = "groupName",
         effectiveDate = "2015-12-30",
         expirationDate = "2016-12-30",
         guarantorRelationship = "guarantorRelationship",
         guarantorName = "guarantorName",
         guarantorFirstName = "guarantorFirstName",
         guarantorMiddleName = "guarantorMiddleName",
         guarantorLastName = "guarantorLastName",
         guarantorDob = "1978-10-20",
         guarantorGender = "female",
         copayAmount = 50
       }
     }
   ]