POST api/ProviderService/UpdatePatientPhoto
Updates the patient profile photo.
Request Information
URI Parameters
None.
Body Parameters
PatientImageViewModel| Name | 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": "5e3c1306-f1f0-4214-9672-936ed203a39d",
"PracticeID": "f89245b5-9b90-4ab0-8275-bb0cd24d9d78"
}
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>5e3c1306-f1f0-4214-9672-936ed203a39d</PatientID> <PracticeID>f89245b5-9b90-4ab0-8275-bb0cd24d9d78</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>