GET api/inventory/Wishlist/MetaInformation?wishlistID={wishlistID}&repDID={repDID}

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
wishlistID

The wishlist being shared

integer

Required

repDID

The rep associated to the request for meta information (not required)

string

Default value is

Body Parameters

None.

Response Information

Resource Description

A repsonse containing Title, Description, and Image information for open graph information

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"
}