GET api/inventory/InventoryShopping/MetaInformation?productID={productID}&repDID={repDID}&langKey={langKey}

This API grabs meta information for a shared wishlist. Should a user share a wishlist, we can grab information for that wishlist to retrieve meta information for giving to Facebook, Twitter, or other sites expecting open graph information.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
productID

The product identifier for the product being shared

string

Required

repDID

The rep associated to the request for meta information

string

Required

langKey

Required. This is the language key (or Locale) that will be used for translations. e.g. en-us

string

Default value is

Body Parameters

None.

Response Information

Resource Description

MetaInformationViewModel
NameDescriptionTypeAdditional information
Title

The meta title associated to the product or wishlist shared

string

None.

Description

The meta description associated to the product or wishlist shared

string

None.

ImageUrl

The meta absolute image URL associated to the product or wishlist shared

string

None.

Response Formats

application/xml, text/xml

Sample:
<MetaInformationViewModel>
  <Title>sample string 1</Title>
  <Description>sample string 2</Description>
  <ImageUrl>sample string 3</ImageUrl>
</MetaInformationViewModel>

application/json, text/json

Sample:
{
  "Title": "sample string 1",
  "Description": "sample string 2",
  "ImageUrl": "sample string 3"
}