Summary
How to trigger reset and sync after updating source configuration via API
Question
Hello, I have question about Configuration API
I create route to update source configuration and then I want to trigger reset and then sync how to it via api ?
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want to access the original thread.
Join the conversation on Slack
["configuration-api", "trigger-reset", "trigger-sync", "source-configuration", "api"]
I manage to trigger it using
curl -v -X POST -H 'accept: application/json' -H 'content-type: application/json' -H 'Authorization: Basic aaaaa' http://<api-server>.airbyte.svc.cluster.local:80/v1/jobs --data '{"connectionId": "<connection-id>", "jobType":"sync"}'
jobType: sync will do a usual sync and reset it will perform a reset
Did you manage to set a key for the API ?
I’m not able to find the config to do so