Taragolis commented on PR #37244:
URL: https://github.com/apache/airflow/pull/37244#issuecomment-1936305925

   Just for the record, I've checked latest Airbyte `0.50.48` locally and both 
APIs available. I'm not sure but last time I've found that presumably [v0.50.13 
](https://github.com/airbytehq/airbyte-platform/releases/tag/v0.50.13) 
(released 5 month ago) it is the first version where Airbyte API available for 
OSS users 
   
   **Configuration API**
   ```console
   ❯ curl -X POST "http://127.0.0.1:8000/api/v1/workspaces/list"; \
        --header 'accept: application/json' \
        --user airbyte:password
   
   
{"workspaces":[{"workspaceId":"c81b0f84-e935-4ca4-974f-b1dbc8e4af58","customerId":"3aa7d861-9af9-4708-86ea-cd089605ef6e","email":"[email protected]","name":"c81b0f84-e935-4ca4-974f-b1dbc8e4af58","slug":"c81b0f84-e935-4ca4-974f-b1dbc8e4af58","initialSetupComplete":true,"displaySetupWizard":false,"anonymousDataCollection":false,"notifications":[],"notificationSettings":{},"defaultGeography":"auto","organizationId":"00000000-0000-0000-0000-000000000000"}]}
   ```
   **Airbyte API**
   ```console
   ❯ curl -X GET 
"http://127.0.0.1:8006/v1/workspaces?includeDeleted=false&limit=20&offset=0"; \
        --header 'accept: application/json' \
        --user airbyte:password
   
   
{"data":[{"workspaceId":"c81b0f84-e935-4ca4-974f-b1dbc8e4af58","name":"c81b0f84-e935-4ca4-974f-b1dbc8e4af58","dataResidency":"auto"}]}
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to