GET api/Partner/RestaurantWebContent/GetCoverAndLogoImage?RestaurantID={RestaurantID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
RestaurantID

string

Required

Body Parameters

None.

Response Information

Resource Description

RestroCoverAndLogoImageModel
NameDescriptionTypeAdditional information
CoverImage

RestroLnMImageModel

None.

LogoImage

RestroLnMImageModel

None.

Response Formats

application/json, text/json

Sample:
{
  "CoverImage": {
    "ImageID": 1,
    "RestaurantID": "sample string 2",
    "Image": "sample string 3",
    "ImageDescription": "sample string 4"
  },
  "LogoImage": {
    "ImageID": 1,
    "RestaurantID": "sample string 2",
    "Image": "sample string 3",
    "ImageDescription": "sample string 4"
  }
}

application/xml, text/xml

Sample:
<RestroCoverAndLogoImageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Partner.Operations.CustomModels">
  <CoverImage>
    <Image>sample string 3</Image>
    <ImageDescription>sample string 4</ImageDescription>
    <ImageID>1</ImageID>
    <RestaurantID>sample string 2</RestaurantID>
  </CoverImage>
  <LogoImage>
    <Image>sample string 3</Image>
    <ImageDescription>sample string 4</ImageDescription>
    <ImageID>1</ImageID>
    <RestaurantID>sample string 2</RestaurantID>
  </LogoImage>
</RestroCoverAndLogoImageModel>