Joseph To
02/07/2025, 8:48 PMkapa.ai
02/07/2025, 8:48 PMGET /connections
endpoint to list all connections. 2. Filter the results to show only the connections with a failed status. Here's a more detailed explanation: 1. First, you'll need to make an API call to list all connections. The API endpoint for this is: GET /connections
You can include query parameters to filter the results. For example, you might want to set includeDeleted=false
to exclude deleted connections. 2. In the response, you'll get a list of connections. Each connection will have a status field. You'll want to look for connections where the status indicates a failure. 3. You can then process this list to filter out only the failed connections. Unfortunately, the knowledge sources don't provide a specific API parameter to filter connections by their last sync status directly. You may need to retrieve all connections and then filter the results programmatically based on the status of each connection's most recent sync job. For more details on using the Airbyte API to list connections, you can refer to the [Airbyte API Reference](https://reference.airbyte.com/reference/start). If you're looking for a way to do this through the Airbyte UI instead of the API, you can use the Connections page. According to the [Review the connection status documentation](https://docs.airbyte.com/cloud/managing-airbyte-cloud/review-connection-status), you can filter connections by status: "Each connection is listed alongside its status. From here, you can filter for a specific status to see which connections need attention." This would allow you to quickly see all failed connections in the UI.