Hi :slightly_smiling_face:. I'm using the Airbyte ...
# replication-troubleshooting
m
Hi 🙂. I'm using the Airbyte API in a workflow to automate the setting up of connections between a Google Ads source and a Postgres Destination. To setup my connection I'm making a POST request to the endpoint
<https://my-airbyte-endpoint/api/v1/connections/create|api/v1/connections/create>
and I'm receiving an error:
Errors: supply old or new schedule schema but not both
. I'm not sure why I am seeing this error, as I have basically copied the schedule schema from the documented example on the API documentation. My schedule looks likes like this:
Copy code
"schedule": {
    "units": 24,
    "timeUnit": "hours"
  },
  "scheduleType": "basic",
  "scheduleData": {
    "basicSchedule": {
      "timeUnit": "hours",
      "units": 24
    }
  },
What am I doing wrong? And where can I find documentation on the old or new schedule schema? I'm using airbyte 0.40.4
✍️ 1
u
@[DEPRECATED] Marcos Marx turned this message into Zendesk ticket 2779 to ensure timely resolution!
m
Solved my own problem... Turns out it works when I remove the
scheduleType
key
👍 2
j
So glad you solved this!!