Pular para o conteúdo principal
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>"
}
'
{}

Autorizações

Authorization
string
header
obrigatório

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

Parâmetros de caminho

workspaceId
string
obrigatório

The workspace ID

Pattern: ^ws_[a-z0-9]+$
catalogId
string
obrigatório

Corpo

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

Resposta

Catalog updated successfully

The response is of type object.

Last modified on April 13, 2026