POST api/DoctorProfile/SaveDoctorProfilePhotoUsingAccountKey

Request Information

URI Parameters

None.

Body Parameters

ImageUploadViewModel
NameDescriptionTypeAdditional information
ImageExtension

string

None.

ImageBase64String

string

None.

AccountKey

string

None.

FilePath

string

None.

ThumbnailPath

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ImageExtension": "sample string 1",
  "ImageBase64String": "sample string 2",
  "AccountKey": "sample string 3",
  "FilePath": "sample string 4",
  "ThumbnailPath": "sample string 5"
}

application/xml, text/xml

Sample:
<ImageUploadViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VDoctorsApp.Models">
  <AccountKey>sample string 3</AccountKey>
  <FilePath>sample string 4</FilePath>
  <ImageBase64String>sample string 2</ImageBase64String>
  <ImageExtension>sample string 1</ImageExtension>
  <ThumbnailPath>sample string 5</ThumbnailPath>
</ImageUploadViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.