POST api/RestaurantProfiles/UploadRestaurantProfileImage?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

PostRestaurantProfileImageBindingModel
NameDescriptionTypeAdditional information
RestaurantProfileId

integer

None.

ImageName

string

None.

ImageContent

string

None.

IsPrimaryImage

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "RestaurantProfileId": 1,
  "ImageName": "sample string 2",
  "ImageContent": "sample string 3",
  "IsPrimaryImage": true
}

application/xml, text/xml

Sample:
<PostRestaurantProfileImageBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO">
  <ImageContent>sample string 3</ImageContent>
  <ImageName>sample string 2</ImageName>
  <IsPrimaryImage>true</IsPrimaryImage>
  <RestaurantProfileId>1</RestaurantProfileId>
</PostRestaurantProfileImageBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.