POST
/
organizations
/
{orgId}
/
catalogs
/
{catalogId}
/
products
Create Products
curl --request POST \
  --url https://api.joinrefine.io/organizations/{orgId}/catalogs/{catalogId}/products \
  --header 'Content-Type: application/json' \
  --header 'REFINE_API_KEY: <api-key>' \
  --data '[
  {
    "id": "sku001",
    "catalogId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "imageUrl": "https://cdn.site.com/p/sku001.jpg",
    "descriptor": "Red Linen Dress",
    "metadata": {
      "color": "red",
      "size": "S",
      "price": 119.99
    }
  }
]'
{
  "status": "success",
  "message": "products uploaded",
  "count": 2
}

Authorizations

REFINE_API_KEY
string
header
required

API key for authentication

Path Parameters

orgId
string
required

Organization ID (UUID)

catalogId
string
required

Catalog ID (UUID)

Body

application/json · object[]

The body is of type object[].

Response

200
application/json

Products created successfully

The response is of type object.