Pular para o conteúdo principal
POST
/
api
/
workspace
/
{workspaceId}
/
catalogs
/
{catalogId}
/
merge
Merge catalog
curl --request POST \
  --url https://app.alana.shopping/api/workspace/{workspaceId}/catalogs/{catalogId}/merge \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source_catalog_id": "<string>",
  "conflict_resolution": "skip"
}
'
{}

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
source_catalog_id
string
obrigatório

ID of the catalog to merge from

conflict_resolution
enum<string>
padrão:skip
Opções disponíveis:
keep_existing,
overwrite,
skip

Resposta

Catalogs merged successfully

The response is of type object.

Last modified on February 16, 2026