GET - Specs
The specs API gives information about a given style's specs. This information is used to build the spec sheets.
Resource URL:
GET     https://api.ssactivewear.com/v2/specs/
Request Options:
Example Request:
    GET     https://api.ssactivewear.com/v2/specs/39
Response:
[
    {
        "specID": 39,
        "styleID": 253,
        "partNumber": "13498",
        "brandName": "IZOD",
        "styleName": "13Z0075",
        "sizeName": "S",
        "sizeOrder": "B1",
        "specName": "Neck Size",
        "value": "16"
    }
]
Specs Object Definition:
    
        | specID | Integer | Unique ID for this spec (Will never change) | 
    
        | styleID | Integer | Unique ID for this style (Will never change) | 
    
        | partNumber | String | First 5 digits of our sku number. It is the same for all skus in the style. | 
    
        | brandName | String | The brand that makes this style. | 
    
        | styleName | String | The style's name. Style names are unique within a brand. | 
    
        | sizeName | String | Size Name that the spec belongs to. | 
    
        | sizeOrder | String | Sort order for the size compared to other sizes in the style. | 
    
        | specName | String | The name of the spec. | 
    
        | value | String | The value of the spec. |