GET api/Product/CheckAllProductsTrackability

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

CheckAllProductsTrackabilityResponse
NameDescriptionTypeAdditional information
AllProductTrackabilityInfoItemList

Collection of ProductTrackabilityInfoItem

None.

ResponseCode

integer

None.

ResponseText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "AllProductTrackabilityInfoItemList": [
    {
      "ProductID": 1,
      "IsTrackable": true
    },
    {
      "ProductID": 1,
      "IsTrackable": true
    }
  ],
  "ResponseCode": 1,
  "ResponseText": "sample string 2"
}

application/xml, text/xml

Sample:
<CheckAllProductsTrackabilityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response">
  <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode>
  <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText>
  <AllProductTrackabilityInfoItemList xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
    <d2p1:ProductTrackabilityInfoItem>
      <d2p1:IsTrackable>true</d2p1:IsTrackable>
      <d2p1:ProductID>1</d2p1:ProductID>
    </d2p1:ProductTrackabilityInfoItem>
    <d2p1:ProductTrackabilityInfoItem>
      <d2p1:IsTrackable>true</d2p1:IsTrackable>
      <d2p1:ProductID>1</d2p1:ProductID>
    </d2p1:ProductTrackabilityInfoItem>
  </AllProductTrackabilityInfoItemList>
</CheckAllProductsTrackabilityResponse>