DesignHub
Authentication
POSTRegister
http://localhost:3000/api/v1/auth/register
Registers a new user. Expects a JSON body with user details (username, email, password). Returns a success message if the registration is successful.
Bodyraw (json)
Example Request
Register
201 Created
Example Response
X-Powered-By
Access-Control-Allow-Origin
Vary
Access-Control-Allow-Credentials
Content-Type
Content-Length
ETag
Date
Connection
Keep-Alive
POSTLogin
http://localhost:3000/api/v1/auth/login
Authenticates a user. Expects a JSON body with email and password. Returns authentication tokens if successful.
Bodyraw (json)
Example Request
Login
200 OK
Example Response
X-Powered-By
Access-Control-Allow-Origin
Vary
Access-Control-Allow-Credentials
Content-Type
Content-Length
ETag
Date
Connection
Keep-Alive
POSTRefresh Token
http://localhost:3000/api/v1/auth/refresh-token
Refreshes the authentication token. Expects an authorization header with the refresh token. Returns a new authentication token if successful.
AUTHORIZATIONBearer Token
Token
Example Request
Refresh Token
200 OK
Example Response
X-Powered-By
Access-Control-Allow-Origin
Vary
Access-Control-Allow-Credentials
Content-Type
Content-Length
ETag
Date
Connection
Keep-Alive