Saif Ali Shaik —
Can I create a user in Archestra programmatically? I was assuming making a POST call to /api/teams/{id}/members woudl also create members
I watched the stream recording for Archestra, and it was actually great. By the way, what projects are you all working on?
/health api endpoint works. But if try to GET /api/organization I see:I'm using the API key at: Settings > Your Account > API Keys > Create API Key
cURLRead-only live mirror of Archestra.AI Slack
👋Join the discussion withAI enthusiasts!POST /api/teams/:id/members adds an existing user to a team — it doesn't create new users. Teams in Archestra are for access control (which agents/MCP gateways/servers a user can see), not for user management.Authorization: archestra_<your-api-key>
Content-Type: application/json
{
"email": "<mailto:newuser@example.com|newuser@example.com>",
"role": "member"
}```
This returns an invitation ID, you then construct the invitation link yourself and share it: