GET api/Shops/DisplayShopsProspectIds?name={name}&profileId={profileId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
name

string

Required

profileId

string

Required

Body Parameters

None.

Response Information

Resource Description

ShopModel
NameDescriptionTypeAdditional information
ShopID

integer

None.

ShopName

string

None.

ShopCategory

string

None.

ShopDescription

string

None.

ShopLogo

string

None.

ShopUrl

string

None.

ShopType

string

None.

ShopLocation

string

None.

ShopCountry

string

None.

Visible

integer

None.

UserID

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ShopID": 1,
  "ShopName": "sample string 2",
  "ShopCategory": "sample string 3",
  "ShopDescription": "sample string 4",
  "ShopLogo": "sample string 5",
  "ShopUrl": "sample string 6",
  "ShopType": "sample string 7",
  "ShopLocation": "sample string 8",
  "ShopCountry": "sample string 9",
  "Visible": 10,
  "UserID": "sample string 11"
}

application/xml, text/xml

Sample:
<ShopModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model_z_webAPIService.Models">
  <ShopCategory>sample string 3</ShopCategory>
  <ShopCountry>sample string 9</ShopCountry>
  <ShopDescription>sample string 4</ShopDescription>
  <ShopID>1</ShopID>
  <ShopLocation>sample string 8</ShopLocation>
  <ShopLogo>sample string 5</ShopLogo>
  <ShopName>sample string 2</ShopName>
  <ShopType>sample string 7</ShopType>
  <ShopUrl>sample string 6</ShopUrl>
  <UserID>sample string 11</UserID>
  <Visible>10</Visible>
</ShopModel>