GET api/CMS/GetStoreLinks?providerId={providerId}&searchString={searchString}&searchType={searchType}&searchPage={searchPage}&groupId={groupId}&isFromStoreFront={isFromStoreFront}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerId

integer

Required

searchString

string

Required

searchType

string

Required

searchPage

string

Required

groupId

integer

Default value is 0

isFromStoreFront

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

Collection of StoreLinksViewModel
NameDescriptionTypeAdditional information
LinkID

integer

None.

Link

string

None.

LinkName

string

None.

LinkType

string

None.

ImagePath

string

None.

TechnicalSpecification

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "LinkID": 1,
    "Link": "sample string 2",
    "LinkName": "sample string 3",
    "LinkType": "sample string 4",
    "ImagePath": "sample string 5",
    "TechnicalSpecification": "sample string 6"
  },
  {
    "LinkID": 1,
    "Link": "sample string 2",
    "LinkName": "sample string 3",
    "LinkType": "sample string 4",
    "ImagePath": "sample string 5",
    "TechnicalSpecification": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStoreLinksViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.CMS">
  <StoreLinksViewModel>
    <ImagePath>sample string 5</ImagePath>
    <Link>sample string 2</Link>
    <LinkID>1</LinkID>
    <LinkName>sample string 3</LinkName>
    <LinkType>sample string 4</LinkType>
    <TechnicalSpecification>sample string 6</TechnicalSpecification>
  </StoreLinksViewModel>
  <StoreLinksViewModel>
    <ImagePath>sample string 5</ImagePath>
    <Link>sample string 2</Link>
    <LinkID>1</LinkID>
    <LinkName>sample string 3</LinkName>
    <LinkType>sample string 4</LinkType>
    <TechnicalSpecification>sample string 6</TechnicalSpecification>
  </StoreLinksViewModel>
</ArrayOfStoreLinksViewModel>