Public
Documentation Settings

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)
json
{
    "username": "Lokitha",
    "email": "lokitha@gmail.com",
    "password": "1234"
}
Example Request
curl
curl --location 'http://localhost:3000/api/v1/auth/register' \
--data-raw '{
    "username": "Lokitha",
    "email": "lokitha@gmail.com",
    "password": "1234"
}'
201 Created
Example Response
json
"User registered successfully"
X-Powered-By

Express

Access-Control-Allow-Origin

http://localhost:5173

Vary

Origin

Access-Control-Allow-Credentials

true

Content-Type

application/json; charset=utf-8

Content-Length

30

ETag

W/"1e-lHzIf3o0Mt42k+FlG0abxkrvmbo"

Date

Thu, 27 Feb 2025 13:49:16 GMT

Connection

keep-alive

Keep-Alive

timeout=5

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)
json
{
    "email": "lokitha@gmail.com",
    "password": "1234"
}
Example Request
curl
curl --location 'http://localhost:3000/api/v1/auth/login' \
--data-raw '{
    "email": "lokitha@gmail.com",
    "password": "1234"
}'
200 OK
Example Response
json
{
  "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6Imxva2l0aGFAZ21haWwuY29tIiwiaWF0IjoxNzQwNjY0MjY2LCJleHAiOjE3NDA2NjQzMjZ9.gJknM_drUEcR3e_XGDPIXDBTkt1YfFNxZ6QPlAQWu7Q",
  "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6Imxva2l0aGFAZ21haWwuY29tIiwiaWF0IjoxNzQwNjY0MjY2LCJleHAiOjE3NDEyNjkwNjZ9.YwkCz3M8P_Myozz58yWRO6zavjj1LnQWX-mJM6Kby-0",
  "user": {
    "id": 1,
    "username": "Lokitha",
    "email": "lokitha@gmail.com"
  }
}
X-Powered-By

Express

Access-Control-Allow-Origin

http://localhost:5173

Vary

Origin

Access-Control-Allow-Credentials

true

Content-Type

application/json; charset=utf-8

Content-Length

439

ETag

W/"1b7-RFcwdCETZrvQBk/tkRtj8yiPmD4"

Date

Thu, 27 Feb 2025 13:51:06 GMT

Connection

keep-alive

Keep-Alive

timeout=5

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

<token>

Example Request
curl
curl --location --request POST 'http://localhost:3000/api/v1/auth/refresh-token'
200 OK
Example Response
json
{
  "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6Imxva2l0aGFAZ21haWwuY29tIiwiaWF0IjoxNzQwNjY0Mjk4LCJleHAiOjE3NDA2NjQzNTh9.MvO1Cz-7KKEKSV1-F9-gcrlBYLrXF_xw3U8A6q2hApM"
}
X-Powered-By

Express

Access-Control-Allow-Origin

http://localhost:5173

Vary

Origin

Access-Control-Allow-Credentials

true

Content-Type

application/json; charset=utf-8

Content-Length

187

ETag

W/"bb-B4R1sh17egbrjvXmxovvxAh7L0I"

Date

Thu, 27 Feb 2025 13:51:38 GMT

Connection

keep-alive

Keep-Alive

timeout=5

Component