Skip to main content
PATCH
/
api
/
workspace
/
{workspaceId}
/
catalogs
/
{catalogId}
Update catalog
curl --request PATCH \
  --url https://app.alana.shopping/api/workspace/{workspaceId}/catalogs/{catalogId} \
  --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

catalogId
string
required

Body

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

Response

Catalog updated successfully

The response is of type object.