Eric Albanese
10/18/2024, 5:50 PMCloudWorkspace
instance without it?user
10/18/2024, 5:50 PMclient_id
and client_secret
) to interact with the Airbyte API, even for a self-hosted OSS instance. Here are the steps to create application credentials: 1. Log into the Airbyte UI of your self-hosted instance. 2. Go to the settings/applications
page. 3. Create an application to get a pair of client_id
and client_secret
credentials. Once you have these credentials, you can use them to obtain an access token by making an API request to the applications/token
endpoint. The access token can then be used to make requests to the API. Here's an example of how to obtain an access token: bash POST <YOUR_WEBAPP_URL>/api/v1/applications/token
With the following JSON Body attached to the request, populated with your client_id
and `client_secret`: json { "client_id": "", "client_secret": "" }
The API response should provide an access_token
, which is a Bearer Token valid for a certain period (60 minutes or 3 minutes depending on the source) that can be used to make requests to the API. Once your access_token
expires, you may make a new request to the applications/token
endpoint to get a new token. Please note that the exact steps and endpoints may vary depending on your specific setup and version of Airbyte. For more detailed instructions, please refer to the [official Airbyte documentation](https://docs.airbyte.com/enterprise-setup/api-access-config). As for creating a CloudWorkspace
instance without an API key, the knowledge sources do not provide enough information to answer this question confidently. It's recommended to check the official Airbyte documentation or reach out to the Airbyte community for further assistance.Eric Albanese
10/18/2024, 5:51 PMuser
10/18/2024, 5:51 PMuser
10/18/2024, 5:51 PM