See also

14 Dec 2024 01:49 AM

Send Data to Conduit API from a custom integration

Create a Webhook in Conduit

Create an endpoint in Conduit to receive the CSV file. Follow the instructions in https://app.getconduit.app/discover/upload-csv-files-to-conduit-via-api/

Ensure that a corresponding column has been created in WebHook for each column listed in the mapping section.
clipboard-2024-11-21-01-04-53-553Z.png

Create the "destination" section

Copy the WebHook URL from Conduit and paste it into the integration configuration.

"destination": {
    "url": "https://api.getconduit.app/push/1ef325e9-bc4e-4cd5-959c-1ad6c275a88b2/receive/"
  }

Check the result

Click the Sync button.
Make sure you received the "event_id" response.
clipboard-2024-11-21-01-07-41-914Z.png

Open the Logs page in the Conduit’s Webhook UI:
clipboard-2024-11-21-01-06-38-935Z.png

The server will download data from the endpoint and save it into a table that can be used in Imports, AI, Workflows.

Update the Webhook for the Integration.

To send data to a different webhook, simply copy and paste the new URL.

The development process is now complete.

close