Repo Storage API Key
TypeScript Client Quick Links
import { FlashbackClient } from '@flashback/client';
const client = new FlashbackClient({ accessToken: 'your-access-token' });
// List API keys for a repo
await client.apiKeys.list('repo-id');
// Create API key
await client.apiKeys.create('repo-id', { name: 'CI Bot', access: 'READ' });
// Update API key
await client.apiKeys.update('repo-id', 'apikey-id', { name: 'CI Bot v2', access: 'WRITE' });
// Delete API key
await client.apiKeys.delete('repo-id', 'apikey-id');API Keys API Calls
Method
API Reference
Description
Last updated
Was this helpful?