Catalog
This service is designed to provide product information related to your company store. The details provided can be found active on the main website given proper access to the normal site. Below are instructions for consuming this service and some examples of output.
Access
The data is called via a GET statement at the following URL for entire store retrieval.
https://integrations.cogginsstore.com/orders/store_detail.json?shop=store.yourname.com
Or the following example demonstrates one item at a time.
https://integrations.cogginsstore.com/orders/store_detail.json?sku=S-ABC-001&shop=store.yourname.com
(Replace [store.yourname.com] with the actual url Coggins is hosting for your store)
Access also requires an API Key provided separately by Coggins to be passed as a Request Header in order to receive the results
Request Header Name: CogginsAPIKey
Example Value: A81CF4E5-F000-000B-XXXX-XXXXXXXX
Example Response:
[
{
"skuName": "S-ABC-001",
"productName": "Survey",
"productDescription": "Description goes here.",
"imageUrl": "https://store.example.com/Products/GetImage/305670",
"category": Literature,
"listPrice": 20.0
"hasDimensions": false,
},
{
"skuName": "S-ANA-028",
"productName": "Tumbler",
"productDescription": "Description goes here.",
"imageUrl": "https://store.example.com/Products/GetImage/394897",
"category": "Drinkware",
"listPrice": 25.0
""hasDimensions": false,
},
{
"skuName": "NC-111",
"productName": "Mens Polo",
"productDescription": "Description Goes Here",
"imageUrl": "https://store.example.com/Products/GetImage/0",
"category": "Dropship",
"listPrice": 24.0000,
"hasDimensions": true,
"dimensions": [
{
"compositeValue": "NC-111.SM.RED",
"compositeName": " Small-Red",
"size": "SM ",
"color": "RED ",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "Small",
"dim_2_Label": "Color",
"dim_2_Value": "Red",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.SM.WHIT",
"compositeName": " Small-White",
"size": "SM ",
"color": "WHIT",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "Small",
"dim_2_Label": "Color",
"dim_2_Value": "White",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.MED.RED",
"compositeName": " Medium-Red",
"size": "MED ",
"color": "RED ",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "Medium",
"dim_2_Label": "Color",
"dim_2_Value": "Red",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.MED.WHIT",
"compositeName": " Medium-White",
"size": "MED ",
"color": "WHIT",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "Medium",
"dim_2_Label": "Color",
"dim_2_Value": "White",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.LG.RED",
"compositeName": " Large-Red",
"size": "LG ",
"color": "RED ",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "Large",
"dim_2_Label": "Color",
"dim_2_Value": "Red",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.LG.WHIT",
"compositeName": " Large-White",
"size": "LG ",
"color": "WHIT",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "Large",
"dim_2_Label": "Color",
"dim_2_Value": "White",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.XLG.RED",
"compositeName": " X-Large-Red",
"size": "XLG ",
"color": "RED ",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "X-Large",
"dim_2_Label": "Color",
"dim_2_Value": "Red",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.XLG.WHIT",
"compositeName": " X-Large-White",
"size": "XLG ",
"color": "WHIT",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "X-Large",
"dim_2_Label": "Color",
"dim_2_Value": "White",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.2X.WHIT",
"compositeName": " 2X-Large-White",
"size": "2X ",
"color": "WHIT",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "2X-Large",
"dim_2_Label": "Color",
"dim_2_Value": "White",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.3X.RED",
"compositeName": " 3X-Large-Red",
"size": "3X ",
"color": "RED ",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "3X-Large",
"dim_2_Label": "Color",
"dim_2_Value": "Red",
"dim_3_Label": null,
"dim_3_Value": null
},
{
"compositeValue": "NC-111.3X.WHIT",
"compositeName": " 3X-Large-White",
"size": "3X ",
"color": "WHIT",
"imageUrl": null,
"dim_1_Label": "Size",
"dim_1_Value": "3X-Large",
"dim_2_Label": "Color",
"dim_2_Value": "White",
"dim_3_Label": null,
"dim_3_Value": null
}
]
},