Alteryx to Collibra Integration
Problem: When trying to trigger the Alteryx integration using the HTTP endpoint (i.e. localhost:8080/api/sync), it is failing with the following error:
Alteryx to Collibra Integration - Collibra Marketplace
A Spring Boot integration that retrieves metadata about the existing workflows in an Alteryx Gallery instance, then this information is transformed and ingested on the Collibra Platform as assets and relations.
Solution: The Alteryx integration according to the current version on Collibra’s Marketplace should be triggered using a HTTP POST request instead of a HTTP GET request.
Since when using a web browser, a GET request is used (not a POST request), there are the following options on how this integration could be triggered:
-
Use tools such as Postman or Curl to send a POST request.
-
From the web browser, visit the following Swagger endpoint URL and then trigger the integration from the web interface:
https://<api-host>:<api-port>/swagger-ui/where:
-
<api-host>should be replaced with the instance where the integration is deployed, e.g. localhost; -
<api-port>should be replaced with the port number that the integration is listening for requests.
-