Replies: 1 comment
|
Current VoidAuth has an admin JSON endpoint for invitations, but it is not yet a service-to-service API. The web admin UI calls The limitation for your billing integration is authentication: every admin route is protected by Direct user creation is deliberately not the model today. The docs say users can only be invited, so they choose their password when accepting the invitation (user management). I would also avoid writing to the database directly; that would bypass the invitation challenge, expiration, group links, audit fields, and email flow. So the practical answer is:
A narrowly scoped API token that can only create/list/revoke invitations would fit this use case without granting a billing system a reusable human admin session. |
Uh oh!
There was an error while loading. Please reload this page.
Example scenario:
There is an existing user/billing management system and I'm exploring user authentication systems that can provide SSO type services.
As billing generates users, would it be possible to programmatically create/invite users over an API? Or would that need to be done through a database connection?
All reactions