-
Notifications
You must be signed in to change notification settings - Fork 0
Authentication
blacklizardcode edited this page May 2, 2026
·
1 revision
All endpoints for authentication will be documented here.
Endpoint: /auth/register
Method: POST
{
"username": "usernamestring",
"password": "passwordstring"
}| Status | Description |
|---|---|
| 200 | OK |
| 400 | Bad Request |
| 500 | Internal Server Error |
Endpoint: /auth/login
Method: POST
{
"username": "usernamestring",
"password": "passwordstring"
}| Status | Description |
|---|---|
| 200 | OK + Set-Cookie: jwtstring |
| 400 | Bad Request |
| 500 | Internal Server Error |