-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Description
What problem will this feature address?
Dokploy has a solid API for automating infrastructure and application provisioning, but currently user creation is invitation-only. This creates a hard blocker for fully automated, multi-tenant integrations (e.g. WHMCS, SaaS platforms, internal PaaS offerings).
For API-driven platforms, invitations introduce human interaction into flows that must be fully automated:
- Cannot silently provision isolated tenants
- Cannot create per-organization service users
- Cannot generate per-tenant API keys programmatically
- Forces operators to reuse a global admin API key, increasing blast radius and security risk
- This makes Dokploy difficult to use as a backend for hosting providers and SaaS platforms.
Describe the solution you'd like
Proposed solution
Introduce API-based user creation without invitations, specifically for service / automation users.
Example
POST /api/users { "email": "service-client-123@internal", "name": "Client 123 Service User", "organization_id": "org_xxx", "role": "developer", "type": "service", "skip_invite": true }
Describe alternatives you've considered
We can't move on an build a solid integration.
No alternatives found.
Additional context
No response
Will you send a PR to implement it?
No