Documentation Index
Fetch the complete documentation index at: https://mintlify.com/SoftwareVerse/userverse/llms.txt
Use this file to discover all available pages before exploring further.
Verify account
GET/user/verify
Verifies a user’s account using the token from the email verification link. No authentication is required.
This endpoint is typically called by following a link in the verification email sent after account creation. The token is appended as a query parameter.
Request
The verification token included in the email verification link.
Response
Returns a201 Created response on successful verification.
Human-readable status message. Example:
"User account verified successfully"Always
null for this endpoint.Error codes
| Code | Description |
|---|---|
400 | Token is missing, malformed, or has already been used. |
404 | No account associated with the provided token. |
500 | Internal server error. |
Example
Resend verification email
POST/user/resend-verification
Sends a new verification email to the authenticated user’s email address.
Request
JWT Bearer token. Example:
Bearer <access_token>Response
Returns a200 OK response on success.
Human-readable status message. Example:
"Verification email resent successfully"Always
null for this endpoint.Error codes
| Code | Description |
|---|---|
400 | Account is already active or invalid request. |
401 | Missing or invalid Bearer token. |
404 | User not found. |
500 | Internal server error. |