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": "71c85795-8293-40d1-8356-807602bea6f8",
"PracticeID": "2ff1d970-d983-4157-9eca-03fef9d751ac"
}
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>71c85795-8293-40d1-8356-807602bea6f8</PatientID> <PracticeID>2ff1d970-d983-4157-9eca-03fef9d751ac</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>