Animations Outline
Our marketing GIFs follow the "Sutra Flow": Signup → Policy Config → Agent Onboarding → Successful Auth.
Register Your Organization
The first step is creating your SutraID workspace. This gives you access to a secure tenant where all your identity data and policies will live.
// 1. Initialize the SDK
const sutra = new SutraID({
organizationId: 'acme-corp-123',
apiKey: process.env.SUTRA_API_KEY
});
// 2. Configure your environment
await sutra.organizations.configure({
domain: 'acme.com',
defaultRegion: 'us-east-1'
});