POST api/Partner/PartnerWithUs/SaveRestaurantLogoImage

Request Information

URI Parameters

None.

Body Parameters

UploadRestaurantImagePostModel
NameDescriptionTypeAdditional information
OldImageID

integer

None.

RestaurantID

string

None.

OldImage

string

None.

ImageFile

string

None.

IPAddress

string

None.

UserID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "OldImageID": 1,
  "RestaurantID": "sample string 2",
  "OldImage": "sample string 3",
  "ImageFile": "sample string 4",
  "IPAddress": "sample string 5",
  "UserID": "sample string 6"
}

application/xml, text/xml

Sample:
<UploadRestaurantImagePostModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Partner.Operations.CustomModels">
  <IPAddress>sample string 5</IPAddress>
  <ImageFile>sample string 4</ImageFile>
  <OldImage>sample string 3</OldImage>
  <OldImageID>1</OldImageID>
  <RestaurantID>sample string 2</RestaurantID>
  <UserID>sample string 6</UserID>
</UploadRestaurantImagePostModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>