POST api/SKUs/CustomAttribuesSearch
Retrieves all custom attribues with their values. Links to these will be on the clsSKU object if applicable.
Request Information
URI Parameters
None.
Body Parameters
EskimoClassLibraries.SKUAttribueSearchArguments| Name | Description | Type | Additional information | 
|---|---|---|---|
| AttributeId | integer | 
                             None.  | 
                |
| AttributeValueId | integer | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "AttributeId": 1,
  "AttributeValueId": 1
}
        application/xml, text/xml
            Sample:
        <SKUAttribueSearchArguments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries"> <AttributeId>1</AttributeId> <AttributeValueId>1</AttributeValueId> </SKUAttribueSearchArguments>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
Collection of EskimoClassLibraries.clsSKUAttribute| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | integer | 
                             None.  | 
                |
| Name | string | 
                             None.  | 
                |
| VisibleToEndUsers | boolean | 
                             None.  | 
                |
| OrderBy | integer | 
                             None.  | 
                |
| Active | boolean | 
                             None.  | 
                |
| Values | Collection of EskimoClassLibraries.clsSKUAttributeValue | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "VisibleToEndUsers": true,
    "OrderBy": 4,
    "Active": true,
    "Values": [
      {
        "Id": 1,
        "Value": "sample string 2",
        "OrderBy": 3,
        "Active": true
      },
      {
        "Id": 1,
        "Value": "sample string 2",
        "OrderBy": 3,
        "Active": true
      }
    ]
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "VisibleToEndUsers": true,
    "OrderBy": 4,
    "Active": true,
    "Values": [
      {
        "Id": 1,
        "Value": "sample string 2",
        "OrderBy": 3,
        "Active": true
      },
      {
        "Id": 1,
        "Value": "sample string 2",
        "OrderBy": 3,
        "Active": true
      }
    ]
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfclsSKUAttribute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries">
  <clsSKUAttribute>
    <Active>true</Active>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <OrderBy>4</OrderBy>
    <Values>
      <clsSKUAttributeValue>
        <Active>true</Active>
        <Id>1</Id>
        <OrderBy>3</OrderBy>
        <Value>sample string 2</Value>
      </clsSKUAttributeValue>
      <clsSKUAttributeValue>
        <Active>true</Active>
        <Id>1</Id>
        <OrderBy>3</OrderBy>
        <Value>sample string 2</Value>
      </clsSKUAttributeValue>
    </Values>
    <VisibleToEndUsers>true</VisibleToEndUsers>
  </clsSKUAttribute>
  <clsSKUAttribute>
    <Active>true</Active>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <OrderBy>4</OrderBy>
    <Values>
      <clsSKUAttributeValue>
        <Active>true</Active>
        <Id>1</Id>
        <OrderBy>3</OrderBy>
        <Value>sample string 2</Value>
      </clsSKUAttributeValue>
      <clsSKUAttributeValue>
        <Active>true</Active>
        <Id>1</Id>
        <OrderBy>3</OrderBy>
        <Value>sample string 2</Value>
      </clsSKUAttributeValue>
    </Values>
    <VisibleToEndUsers>true</VisibleToEndUsers>
  </clsSKUAttribute>
</ArrayOfclsSKUAttribute>