(health())
- getHealthCheck - Health Check
Health Check
package hello.world;
import com.airbyte.api.Airbyte;
import com.airbyte.api.models.operations.GetHealthCheckResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws Exception {
Airbyte sdk = Airbyte.builder()
.build();
GetHealthCheckResponse res = sdk.health().getHealthCheck()
.call();
// handle response
}
}| Error Type | Status Code | Content Type |
|---|---|---|
| models/errors/SDKError | 4XX, 5XX | */* |