POST api/ProviderService/UpdatePatientPhoto
Updates the patient profile photo.
Request Information
URI Parameters
None.
Body Parameters
PatientImageViewModelName | Description | Type | Additional information |
---|---|---|---|
ImageString |
ImageString base 64 |
string |
None. |
PatientID |
Patient ID |
globally unique identifier |
None. |
PracticeID |
Practice ID |
globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "ImageString": "sample string 1", "PatientID": "477e54ae-011e-4248-a33b-83ea3ea310b4", "PracticeID": "d250041e-de3a-4184-991e-1b44c8a4454a" }
application/xml, text/xml
Sample:
<PatientImageViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbsoluteHealth.API.Models"> <ImageString>sample string 1</ImageString> <PatientID>477e54ae-011e-4248-a33b-83ea3ea310b4</PatientID> <PracticeID>d250041e-de3a-4184-991e-1b44c8a4454a</PracticeID> </PatientImageViewModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>