Unlink the content from any existing translations Unlinks the given content from any existing translations. This operations runs asynchronously. For the given content:
• Content must be part of a translation group
• Content must be under the folder '/content/documents'

const data = [
"/content/documents/french/banners/banner-a",
"/content/documents/german/banners/banner-a"
];

translationUnlink(environment, xAuthToken, data)
.then(response => console.log(response.data))
.catch(error => console.error(error));
  • Parameters

    • environment: string

      Environment name: https://{{environment}}.bloomreach.io

    • xAuthToken: string

      BrX API Token

    • data: string[]

    Returns AxiosPromise