I need to pull inventory data from a third-party site a client uses and display that data on their website using the REST API. I've been looking around but haven't found a clear way to do this.
I need to make a Get Request from: https://user.traxia.com/app/api/inventory
// request
{
"key": "API Key Here",
"query": "CAMERA",
"consignorId": "false",
"includeItemsWithQuantityZero": false
}
I would like the response to be
{
"results":
[
{
"status":"ACTIVE"
"sku":"",
"name":"",
"cost":0
}
]
}
The documentation they list is here http://wiki.traxia.com/display/guide/List+and+Search+Inventory
Since I don't know how to accomplish this, any help would be great! Code examples greatly appreciated!