POST api/PatientRegistration
Registers a new patient in Eye Reach Patients.
Request Information
URI Parameters
None.
Body Parameters
Model used to register the patient.
PatientRegistrationModelName | Description | Type | Additional information |
---|---|---|---|
AccountNumber |
Account number of the practice for which patient will be registered (Required). |
string |
None. |
PatientId |
(Read only) It will return the ID of the patient after the registration process. |
globally unique identifier |
None. |
Username |
User name of the patient for login into the portal (Required). |
string |
None. |
Password |
Password (Required). |
string |
None. |
DateOfBirth |
Date of birth of the patient (Required). |
date |
None. |
Gender |
Gender of the patient (Required). Possible values are Unspecified, Female, Male. |
string |
None. |
SexId |
Sex ID of the model in the portal. |
integer |
None. |
Contact |
Contact details of the patient (Required). |
ContactModel |
None. |
TermsOfUseAccepted |
Indicates if user has accepted the terms of use. |
boolean |
None. |
Request Formats
application/json, text/json
{ "AccountNumber": "sample string 1", "PatientId": "f7719e87-41e2-44b9-99f9-0a97066a3213", "Username": "sample string 3", "Password": "sample string 4", "DateOfBirth": "2025-04-03T18:36:20.5567393-04:00", "Gender": "sample string 6", "SexId": 1, "Contact": { "FirstName": "sample string 1", "MiddleName": "sample string 2", "LastName": "sample string 3", "SuffixId": 4, "PrefixId": 5, "CompanyName": "sample string 6", "JobTitle": "sample string 7", "EmailAddresses": [ { "Id": "96735435-e312-47f5-b64e-7da11de0a4c4", "Alias": "sample string 2", "Address": "sample string 3", "Default": true, "SortOrder": 5 }, { "Id": "96735435-e312-47f5-b64e-7da11de0a4c4", "Alias": "sample string 2", "Address": "sample string 3", "Default": true, "SortOrder": 5 } ], "PhoneNumbers": [ { "Id": "a933595f-80d6-439c-958b-afc5c325bb11", "Alias": "sample string 2", "Number": "sample string 3", "UseForVoice": true, "UseForSms": true, "SortOrder": 6 }, { "Id": "a933595f-80d6-439c-958b-afc5c325bb11", "Alias": "sample string 2", "Number": "sample string 3", "UseForVoice": true, "UseForSms": true, "SortOrder": 6 } ], "PostalAddresses": [ { "Id": "e884d49d-6ad6-497e-8c1c-8604dc73056c", "Alias": "sample string 2", "Address1": "sample string 3", "Address2": "sample string 4", "City": "sample string 5", "State": "sample string 6", "CountryId": "9a550203-1ed0-48cb-b4da-e0765972f400", "CountryCode": "sample string 7", "CountryName": "sample string 8", "Zip": "sample string 9", "Default": true, "Latitude": 1.0, "Longitude": 1.0 }, { "Id": "e884d49d-6ad6-497e-8c1c-8604dc73056c", "Alias": "sample string 2", "Address1": "sample string 3", "Address2": "sample string 4", "City": "sample string 5", "State": "sample string 6", "CountryId": "9a550203-1ed0-48cb-b4da-e0765972f400", "CountryCode": "sample string 7", "CountryName": "sample string 8", "Zip": "sample string 9", "Default": true, "Latitude": 1.0, "Longitude": 1.0 } ], "Notes": "sample string 8" }, "TermsOfUseAccepted": true }
application/xml, text/xml
<PatientRegistrationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientRegistration"> <AccountNumber>sample string 1</AccountNumber> <Contact xmlns:d2p1="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.Contacts"> <d2p1:CompanyName>sample string 6</d2p1:CompanyName> <d2p1:EmailAddresses> <d2p1:EmailAddressModel> <d2p1:Address>sample string 3</d2p1:Address> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Default>true</d2p1:Default> <d2p1:Id>96735435-e312-47f5-b64e-7da11de0a4c4</d2p1:Id> <d2p1:SortOrder>5</d2p1:SortOrder> </d2p1:EmailAddressModel> <d2p1:EmailAddressModel> <d2p1:Address>sample string 3</d2p1:Address> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Default>true</d2p1:Default> <d2p1:Id>96735435-e312-47f5-b64e-7da11de0a4c4</d2p1:Id> <d2p1:SortOrder>5</d2p1:SortOrder> </d2p1:EmailAddressModel> </d2p1:EmailAddresses> <d2p1:FirstName>sample string 1</d2p1:FirstName> <d2p1:JobTitle>sample string 7</d2p1:JobTitle> <d2p1:LastName>sample string 3</d2p1:LastName> <d2p1:MiddleName>sample string 2</d2p1:MiddleName> <d2p1:Notes>sample string 8</d2p1:Notes> <d2p1:PhoneNumbers> <d2p1:PhoneNumberModel> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Id>a933595f-80d6-439c-958b-afc5c325bb11</d2p1:Id> <d2p1:Number>sample string 3</d2p1:Number> <d2p1:SortOrder>6</d2p1:SortOrder> <d2p1:UseForSms>true</d2p1:UseForSms> <d2p1:UseForVoice>true</d2p1:UseForVoice> </d2p1:PhoneNumberModel> <d2p1:PhoneNumberModel> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Id>a933595f-80d6-439c-958b-afc5c325bb11</d2p1:Id> <d2p1:Number>sample string 3</d2p1:Number> <d2p1:SortOrder>6</d2p1:SortOrder> <d2p1:UseForSms>true</d2p1:UseForSms> <d2p1:UseForVoice>true</d2p1:UseForVoice> </d2p1:PhoneNumberModel> </d2p1:PhoneNumbers> <d2p1:PostalAddresses> <d2p1:PostalAddressModel> <d2p1:Address1>sample string 3</d2p1:Address1> <d2p1:Address2>sample string 4</d2p1:Address2> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:City>sample string 5</d2p1:City> <d2p1:CountryCode>sample string 7</d2p1:CountryCode> <d2p1:CountryId>9a550203-1ed0-48cb-b4da-e0765972f400</d2p1:CountryId> <d2p1:CountryName>sample string 8</d2p1:CountryName> <d2p1:Default>true</d2p1:Default> <d2p1:Id>e884d49d-6ad6-497e-8c1c-8604dc73056c</d2p1:Id> <d2p1:Latitude>1</d2p1:Latitude> <d2p1:Longitude>1</d2p1:Longitude> <d2p1:State>sample string 6</d2p1:State> <d2p1:Zip>sample string 9</d2p1:Zip> </d2p1:PostalAddressModel> <d2p1:PostalAddressModel> <d2p1:Address1>sample string 3</d2p1:Address1> <d2p1:Address2>sample string 4</d2p1:Address2> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:City>sample string 5</d2p1:City> <d2p1:CountryCode>sample string 7</d2p1:CountryCode> <d2p1:CountryId>9a550203-1ed0-48cb-b4da-e0765972f400</d2p1:CountryId> <d2p1:CountryName>sample string 8</d2p1:CountryName> <d2p1:Default>true</d2p1:Default> <d2p1:Id>e884d49d-6ad6-497e-8c1c-8604dc73056c</d2p1:Id> <d2p1:Latitude>1</d2p1:Latitude> <d2p1:Longitude>1</d2p1:Longitude> <d2p1:State>sample string 6</d2p1:State> <d2p1:Zip>sample string 9</d2p1:Zip> </d2p1:PostalAddressModel> </d2p1:PostalAddresses> <d2p1:PrefixId>5</d2p1:PrefixId> <d2p1:SuffixId>4</d2p1:SuffixId> </Contact> <DateOfBirth>2025-04-03T18:36:20.5567393-04:00</DateOfBirth> <Gender>sample string 6</Gender> <Password>sample string 4</Password> <PatientId>f7719e87-41e2-44b9-99f9-0a97066a3213</PatientId> <SexId>1</SexId> <TermsOfUseAccepted>true</TermsOfUseAccepted> <Username>sample string 3</Username> </PatientRegistrationModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
PatientRegistrationModelName | Description | Type | Additional information |
---|---|---|---|
AccountNumber |
Account number of the practice for which patient will be registered (Required). |
string |
None. |
PatientId |
(Read only) It will return the ID of the patient after the registration process. |
globally unique identifier |
None. |
Username |
User name of the patient for login into the portal (Required). |
string |
None. |
Password |
Password (Required). |
string |
None. |
DateOfBirth |
Date of birth of the patient (Required). |
date |
None. |
Gender |
Gender of the patient (Required). Possible values are Unspecified, Female, Male. |
string |
None. |
SexId |
Sex ID of the model in the portal. |
integer |
None. |
Contact |
Contact details of the patient (Required). |
ContactModel |
None. |
TermsOfUseAccepted |
Indicates if user has accepted the terms of use. |
boolean |
None. |
Response Formats
application/json, text/json
{ "AccountNumber": "sample string 1", "PatientId": "0e69560f-f140-4164-86d3-2038f617a09c", "Username": "sample string 3", "Password": "sample string 4", "DateOfBirth": "2025-04-03T18:36:20.5887691-04:00", "Gender": "sample string 6", "SexId": 1, "Contact": { "FirstName": "sample string 1", "MiddleName": "sample string 2", "LastName": "sample string 3", "SuffixId": 4, "PrefixId": 5, "CompanyName": "sample string 6", "JobTitle": "sample string 7", "EmailAddresses": [ { "Id": "a9e4b484-ffda-489c-89e1-c8c6b51b394f", "Alias": "sample string 2", "Address": "sample string 3", "Default": true, "SortOrder": 5 }, { "Id": "a9e4b484-ffda-489c-89e1-c8c6b51b394f", "Alias": "sample string 2", "Address": "sample string 3", "Default": true, "SortOrder": 5 } ], "PhoneNumbers": [ { "Id": "650f75a5-3211-4210-a0b4-7f551997d186", "Alias": "sample string 2", "Number": "sample string 3", "UseForVoice": true, "UseForSms": true, "SortOrder": 6 }, { "Id": "650f75a5-3211-4210-a0b4-7f551997d186", "Alias": "sample string 2", "Number": "sample string 3", "UseForVoice": true, "UseForSms": true, "SortOrder": 6 } ], "PostalAddresses": [ { "Id": "e2b8b3d8-cd8f-4077-b4c2-8a393a3e8d41", "Alias": "sample string 2", "Address1": "sample string 3", "Address2": "sample string 4", "City": "sample string 5", "State": "sample string 6", "CountryId": "b77c7bb5-b176-4489-b702-453651107848", "CountryCode": "sample string 7", "CountryName": "sample string 8", "Zip": "sample string 9", "Default": true, "Latitude": 1.0, "Longitude": 1.0 }, { "Id": "e2b8b3d8-cd8f-4077-b4c2-8a393a3e8d41", "Alias": "sample string 2", "Address1": "sample string 3", "Address2": "sample string 4", "City": "sample string 5", "State": "sample string 6", "CountryId": "b77c7bb5-b176-4489-b702-453651107848", "CountryCode": "sample string 7", "CountryName": "sample string 8", "Zip": "sample string 9", "Default": true, "Latitude": 1.0, "Longitude": 1.0 } ], "Notes": "sample string 8" }, "TermsOfUseAccepted": true }
application/xml, text/xml
<PatientRegistrationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientRegistration"> <AccountNumber>sample string 1</AccountNumber> <Contact xmlns:d2p1="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.Contacts"> <d2p1:CompanyName>sample string 6</d2p1:CompanyName> <d2p1:EmailAddresses> <d2p1:EmailAddressModel> <d2p1:Address>sample string 3</d2p1:Address> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Default>true</d2p1:Default> <d2p1:Id>a9e4b484-ffda-489c-89e1-c8c6b51b394f</d2p1:Id> <d2p1:SortOrder>5</d2p1:SortOrder> </d2p1:EmailAddressModel> <d2p1:EmailAddressModel> <d2p1:Address>sample string 3</d2p1:Address> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Default>true</d2p1:Default> <d2p1:Id>a9e4b484-ffda-489c-89e1-c8c6b51b394f</d2p1:Id> <d2p1:SortOrder>5</d2p1:SortOrder> </d2p1:EmailAddressModel> </d2p1:EmailAddresses> <d2p1:FirstName>sample string 1</d2p1:FirstName> <d2p1:JobTitle>sample string 7</d2p1:JobTitle> <d2p1:LastName>sample string 3</d2p1:LastName> <d2p1:MiddleName>sample string 2</d2p1:MiddleName> <d2p1:Notes>sample string 8</d2p1:Notes> <d2p1:PhoneNumbers> <d2p1:PhoneNumberModel> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Id>650f75a5-3211-4210-a0b4-7f551997d186</d2p1:Id> <d2p1:Number>sample string 3</d2p1:Number> <d2p1:SortOrder>6</d2p1:SortOrder> <d2p1:UseForSms>true</d2p1:UseForSms> <d2p1:UseForVoice>true</d2p1:UseForVoice> </d2p1:PhoneNumberModel> <d2p1:PhoneNumberModel> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:Id>650f75a5-3211-4210-a0b4-7f551997d186</d2p1:Id> <d2p1:Number>sample string 3</d2p1:Number> <d2p1:SortOrder>6</d2p1:SortOrder> <d2p1:UseForSms>true</d2p1:UseForSms> <d2p1:UseForVoice>true</d2p1:UseForVoice> </d2p1:PhoneNumberModel> </d2p1:PhoneNumbers> <d2p1:PostalAddresses> <d2p1:PostalAddressModel> <d2p1:Address1>sample string 3</d2p1:Address1> <d2p1:Address2>sample string 4</d2p1:Address2> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:City>sample string 5</d2p1:City> <d2p1:CountryCode>sample string 7</d2p1:CountryCode> <d2p1:CountryId>b77c7bb5-b176-4489-b702-453651107848</d2p1:CountryId> <d2p1:CountryName>sample string 8</d2p1:CountryName> <d2p1:Default>true</d2p1:Default> <d2p1:Id>e2b8b3d8-cd8f-4077-b4c2-8a393a3e8d41</d2p1:Id> <d2p1:Latitude>1</d2p1:Latitude> <d2p1:Longitude>1</d2p1:Longitude> <d2p1:State>sample string 6</d2p1:State> <d2p1:Zip>sample string 9</d2p1:Zip> </d2p1:PostalAddressModel> <d2p1:PostalAddressModel> <d2p1:Address1>sample string 3</d2p1:Address1> <d2p1:Address2>sample string 4</d2p1:Address2> <d2p1:Alias>sample string 2</d2p1:Alias> <d2p1:City>sample string 5</d2p1:City> <d2p1:CountryCode>sample string 7</d2p1:CountryCode> <d2p1:CountryId>b77c7bb5-b176-4489-b702-453651107848</d2p1:CountryId> <d2p1:CountryName>sample string 8</d2p1:CountryName> <d2p1:Default>true</d2p1:Default> <d2p1:Id>e2b8b3d8-cd8f-4077-b4c2-8a393a3e8d41</d2p1:Id> <d2p1:Latitude>1</d2p1:Latitude> <d2p1:Longitude>1</d2p1:Longitude> <d2p1:State>sample string 6</d2p1:State> <d2p1:Zip>sample string 9</d2p1:Zip> </d2p1:PostalAddressModel> </d2p1:PostalAddresses> <d2p1:PrefixId>5</d2p1:PrefixId> <d2p1:SuffixId>4</d2p1:SuffixId> </Contact> <DateOfBirth>2025-04-03T18:36:20.5887691-04:00</DateOfBirth> <Gender>sample string 6</Gender> <Password>sample string 4</Password> <PatientId>0e69560f-f140-4164-86d3-2038f617a09c</PatientId> <SexId>1</SexId> <TermsOfUseAccepted>true</TermsOfUseAccepted> <Username>sample string 3</Username> </PatientRegistrationModel>