get__health
TypeScript Client Library
// Using the Flashback TypeScript client
import { FlashbackClient } from '@flashback/client';
const client = new FlashbackClient({
accessToken: 'your-access-token'
});
// Check API health
try {
const result = await client.health.check();
console.log('Health status:', result);
} catch (error) {
console.error('Health check failed:', error);
}Code Samples
Status
Meaning
Description
Schema
Name
Type
Required
Restrictions
Description
Property
Value
Last updated
Was this helpful?