GET api/v2/kits
Get all kits
Request Information
URI Parameters
None.
Body Parameters
None
Response Information
Resource Description
Collection of KitDto| Name | Type | Description | Additional information | 
|---|---|---|---|
| Sku | string | 
                             
  | 
                |
| Name | string | 
                             
  | 
                |
| Barcode | string | 
                             
  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Sku": "sample string 1",
    "Name": "sample string 2",
    "Barcode": "sample string 3"
  },
  {
    "Sku": "sample string 1",
    "Name": "sample string 2",
    "Barcode": "sample string 3"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfKitDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <KitDto>
    <Sku>sample string 1</Sku>
    <Name>sample string 2</Name>
    <Barcode>sample string 3</Barcode>
  </KitDto>
  <KitDto>
    <Sku>sample string 1</Sku>
    <Name>sample string 2</Name>
    <Barcode>sample string 3</Barcode>
  </KitDto>
</ArrayOfKitDto>