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": "ce588341-15e2-4d7b-a4e7-dd0e41be4920",
"PracticeID": "0d39c504-fd0a-406c-b848-e39faa5714ba"
}
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>ce588341-15e2-4d7b-a4e7-dd0e41be4920</PatientID> <PracticeID>0d39c504-fd0a-406c-b848-e39faa5714ba</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>