BrandKarma

link_translations

Links two or more content items as translations of the same content by merging them into a single TranslationGroupId. After linking, the public slug-lookup endpoint returns them as siblings so consumers can emit hreflang alternates. All items must belong to the same brand. Existing siblings of any input item are pulled into the merged group automatically (transitive merge). If an input item already has a different language sibling that duplicates one of the other inputs, the call fails with a conflict.

Remote Account required revuo:brandkarma-4084

Remote (network-hosted) · Requires an account with the vendor · OAuth

Other tools also called link_translations? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "contentItemIds": {
      "description": "Content item IDs (ObjectIds) to link as translations of each other. Must contain at least 2 distinct IDs.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "sourceItemId": {
      "description": "Optional ID of the item to mark as the source-language document (the original from which others were translated). When provided, that item gets IsSourceLanguageDocument=true and every other item in the merged group gets false. When omitted, existing flags are preserved.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "contentItemIds"
  ]
}