Create API keys
const createdApiKeys = await client.apiKeys.create([{ serviceAccountId: 123 }]);
Delete API keys
await client.apiKeys.delete([123, 456]);
List all api keys
const apiKeys = await client.apiKeys.list({ all: true });
Create API keys
const createdApiKeys = await client.apiKeys.create([{ serviceAccountId: 123 }]);