Allow creating users via API without invitation (service users) #3352
stasvangus
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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).
Problem
This makes Dokploy difficult to use as a backend for hosting providers and SaaS platforms.
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 }Beta Was this translation helpful? Give feedback.
All reactions