// Create a workspace const response = await fetch('https://api.wellapp.ai/v1/workspaces', { method: 'POST', headers: { 'Authorization': 'Bearer your-api-key', 'Content-Type': 'application/json' }, body: JSON.stringify({ data: { type: 'workspace', attributes: { name: 'Development Team', description: 'Main development workspace for the engineering team' } } }) });
Was this page helpful?