auth
User authentication & management
The user service provides user account management and authentication. It includes the ability to send verification and password reset emails.
Create a new user account. The email address and username for the account must be unique.
Delete an account by id
List all users. Returns a paged list of results
Login using username or email. The response will return a new session for successful login, 401 in the case of login failure and 500 for any other error
Logout a user account
Logout of all user's sessions
Read an account by id, username or email. Only one need to be specified.
Read a session by the session id. In the event it has expired or is not found and error is returned.
Reset password with the code sent by the "SendPasswordResetEmail" endpoint.
Login using email only - Passwordless
Send an email with a verification code to reset password. Call "ResetPassword" endpoint once user provides the code.
Send a verification email to a user.
Update the account username or email
Update the account password
Verify the email address of an account from a token sent in an email to the user.
Check whether the token attached to MagicLink is valid or not. Ideally, you need to call this endpoint from your http request handler that handles the endpoint which is specified in the SendMagicLink request.
Endpoint | Per Request |
---|---|
Create | Base |
Delete | Base |
List | Base |
Login | Base |
Logout | Base |
Logout All | Base |
Read | Base |
Read Session | Base |
Reset Password | Base |
Send Magic Link | 0.01 USD |
Send Password Reset Email | Base |
Send Verification Email | 0.01 USD |
Update | Base |
Update Password | Base |
Verify Email | Base |
Verify Token | Base |
Base requests are 0.000001 USD
Create Request
Response
{}