Platform: Support ScheduleType: "Scheduled" when creating connections via the airbyte public API #64563
Conall-airbyte
started this conversation in
Platform Features or Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the feature request
If a user exports a connection definition via the airbyte API, and that connection uses ScheduleType "Scheduled", this connection cannot be imported into another airbyte instance until a different schedule type is defined, as the public API does not support this scheduletype for import, even though we use it internally.
Describe the solution you'd like
support scheduleType: "Basic" when using POST /createconnection
Describe alternatives you've considered
mutating definitions in an automated manner using a batch runner of some kind, e.g postman runner.
Additional context
as per:
https://reference.airbyte.com/reference/createconnection#custom-connections-settings
To prove we have no compatibility on public APIs, I attempted it anyway, as below:
Below is an example of the output of "List Connections" from 1.6.1 :
So we see the schedule format is:
I then defined POST Create a connection as below:
Which returns:
Which confirms, this scheduleType is not supported by our public API today when creating a connection.
Beta Was this translation helpful? Give feedback.
All reactions