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

  1. Use this product id in the following endpoints:
  • UPDATE /products
  • CREATE /skus
  • CREATE or UPDATE /collections

Request Parameters

PARAMETERSREQUIREDTYPENOTES
accountYstring
product_idsNstring

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": {}
    }
  ]
}
Language
Click Try It! to start a request and see the response here!