POST
/
organizations
/
{orgId}
/
catalogs
Create Catalog
curl --request POST \
  --url https://api.joinrefine.io/organizations/{orgId}/catalogs \
  --header 'Content-Type: application/json' \
  --header 'REFINE_API_KEY: <api-key>' \
  --data '{
  "name": "Summer 2024",
  "description": "New arrivals for summer.",
  "organizationId": "a8cd2722-1234-4567-9abc-def123456789"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "productCount": 123,
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

REFINE_API_KEY
string
header
required

API key for authentication

Path Parameters

orgId
string
required

Organization ID (UUID)

Example:

"a8cd2722-1234-4567-9abc-def123456789"

Body

application/json

Response

201
application/json

Catalog created successfully

The response is of type object.