For the complete documentation index, see llms.txt. This page is also available as Markdown.

Synchronization finalization request format

The finalization step calls /import/synchronize/<synchronization_id>/finalize/job and has finalizationStrategy and finalizationParameters as optional parameters.

When you set the finalizationStrategy to CHANGE_STATUS, you must also provide a value for finalizationParameters.

Curl

To call the finalization step using curl, add the finalizationParameters field as JSON with an application/json content type appended to the end, for example:

curl \
  -X POST \
  -u <your_credentials> \
  -H  'content-type: multipart/form-data' \
  -H  'accept: application/json' \
  https://<your_collibra_platform_url>/rest/2.0/import/synchronize/<synchronization_id>/finalize/job \
  -F 'finalizationStrategy=CHANGE_STATUS' \
  -F 'finalizationParameters={ "STATUS_ID": "00000000-0000-0000-0000-000000005066" };type=application/json'

Postman

  1. Create a JSON file with the finalizationParameters, for example:

    {
        "STATUS_ID": "00000000-0000-0000-0000-000000005066"
    }
  2. Change the input type of the finalizationParameters to File and select the JSON file that you created:

Java

To call the finalization step in Java use dgcClient to make the REST API calls, for example:

Last updated

Was this helpful?