get https://api.jooraccess.com/v4/products
Fetch a list of product ids.
Endpoint
Sample cURL Request
curl -X GET "https://api.jooraccess.com/v4/products?account=account_id&product_ids=product_ids" -H "accept: application/json"
Workflow
- Use this product id in the following endpoints:
- UPDATE /products
- CREATE /skus
- CREATE or UPDATE /collections
Request Parameters
PARAMETERS | REQUIRED | TYPE | NOTES |
---|---|---|---|
account | Y | string | |
product_ids | N | string |
Response Example
{
"data": [
{
"id": "string",
"name": "string",
"external_id": "string",
"product_identifier": "string",
"description": "string",
"order_minimum": 0,
"categories": [
{
"id": "string",
"name": "string",
"parent_name": "string",
"department": "string"
}
],
"product_trait_values": [
{
"trait": {
"id": "string",
"name": "string"
},
"value": "string",
"external_id": "string"
},
{
"trait": {
"id": "string",
"name": "string"
},
"value": "string",
"external_id": "string"
}
],
"tags": [
{
"id": "string",
"name": "string",
"value": "string",
"code": "string",
"parent_id": "string"
},
{
"id": "string",
"name": "string",
"value": "string",
"code": "string",
"parent_id": "string"
}
]
}
],
"errors": [
{
"status": "string",
"message": "string",
"details": {}
}
]
}