Get all category products details
Return all of your products details from specified product category
GET
/product-categories-by-id/:custom_id/
curl -X GET -H "Authorization: Token <your_64_char_api_key>" "https://<your_app_subdomain>.user.com/api/public/products-by-id/:custom_id/"
Response
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"id": 49,
"name": "my product 1",
"custom_id": "my_product_1_id",
"created_at": "2018-03-01T17:07:28.290479Z",
"updated_at": "2018-03-02T11:22:47.017768Z",
"product_url": "https://myshop.com/my_product1/",
"image_url": "https://myshop.com/media/myproduct1.jpg",
"attributes": [
{
"value": "attr value",
"name_std": "product_attr",
"name": "product attr",
"description": "attribute description",
"id": 22
},
{
"value": "attr value",
"name_std": "product_attr_2",
"name": "product attr 2",
"description": " attribute description",
"id": 23
}
],
"categories": []
},
{
"id": 50,
"name": "my produc 2",
"custom_id": "my_product_2_id",
"created_at": "2018-03-02T14:14:05.608704Z",
"updated_at": "2018-03-02T14:14:05.608742Z",
"product_url": "https://myshop.com/my_product2/",
"image_url": "https://myshop.com/media/myproduct2.jpg",
"attributes": [],
"categories": []
}
]
}
var settings = {
"async": true,
"crossDomain": true,
"url": "https://<your_app_subdomain>.user.com/api/public/products-by-id/:custom_id/",
"method": "GET",
"headers": {
"authorization": "Token <your_64_char_api_key>"
}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
var data = null;
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("GET", "https://<your_app_subdomain>.user.com/api/public/products-by-id/:custom_id/");
xhr.setRequestHeader("authorization", "Token <your_64_char_api_key>");
xhr.send(data);
var request = require("request");
var options = { method: 'GET',
url: 'https://<your_app_subdomain>.user.com/api/public/products-by-id/:custom_id/',
headers: { authorization: 'Token <your_64_char_api_key>' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://<your_app_subdomain>.user.com/api/public/products-by-id/:custom_id/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => "",
CURLOPT_HTTPHEADER => array(
"authorization: Token <your_64_char_api_key>"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "https://<your_app_subdomain>.user.com/api/public/products-by-id/:custom_id/"
payload = ""
headers = {'authorization': 'Token <your_64_char_api_key>'}
response = requests.request("GET", url, data=payload, headers=headers)
print(response.text)
import http.client
conn = http.client.HTTPSConnection("<your_app_subdomain>.user.com")
payload = ""
headers = { 'authorization': "Token <your_64_char_api_key>" }
conn.request("GET", "/api/public/products-by-id/:custom_id/", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))