Skip to main content
DELETE
/
api
/
workspace
/
{workspaceId}
/
catalogs
/
{catalogId}
Delete catalog
curl --request DELETE \
  --url https://app.alana.shopping/api/workspace/{workspaceId}/catalogs/{catalogId} \
  --header 'Authorization: Bearer <token>'
{
  "error": "UNAUTHORIZED",
  "details": {
    "message": "Missing or invalid authentication token"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication via Auth0. Users authenticate through Auth0 Universal Login. Include the access token in the Authorization header: Authorization: Bearer <token>

Path Parameters

workspaceId
string
required

The workspace ID

Pattern: ^ws_[a-z0-9]+$
catalogId
string
required

Response

Catalog deleted successfully

Last modified on April 13, 2026