GET api/ProductSku

Returns a list of Product SKUs available to your company.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ProdutSkuDTO
NameDescriptionTypeAdditional information
ProductSkuCode

The SKU code of the item to be shipped to the customer. This must be supplied in the ManifestDTO.

string

None.

Description

A short description of the item to be shipped.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductSkuCode": "sample string 1",
    "Description": "sample string 2"
  },
  {
    "ProductSkuCode": "sample string 1",
    "Description": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfProdutSkuDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PureWayVendorApi.Models">
  <ProdutSkuDTO>
    <Description>sample string 2</Description>
    <ProductSkuCode>sample string 1</ProductSkuCode>
  </ProdutSkuDTO>
  <ProdutSkuDTO>
    <Description>sample string 2</Description>
    <ProductSkuCode>sample string 1</ProductSkuCode>
  </ProdutSkuDTO>
</ArrayOfProdutSkuDTO>