Skip to main content
POST
/
api
/
workspace
/
{workspaceId}
/
catalogs
Create catalog
curl --request POST \
  --url https://app.alana.shopping/api/workspace/{workspaceId}/catalogs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain a token via the authentication endpoint and include it in the Authorization header: Authorization: Bearer <token>

Path Parameters

workspaceId
string
required

The workspace ID

Body

application/json
name
string
required
Required string length: 1 - 255
description
string | null
Maximum string length: 1000

Response

Catalog created successfully

The response is of type object.