Skip to main content
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"
}
'
{}

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
source_catalog_id
string
required

ID of the catalog to merge from

conflict_resolution
enum<string>
default:skip
Available options:
keep_existing,
overwrite,
skip

Response

Catalogs merged successfully

The response is of type object.