User Management
Last updated
Last updated
GET /users HTTP/1.1
Accept: */*
POST /users HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 80
{
"email": "test@test.com",
"username": "test",
"password": "admin123",
"role": "ADMIN"
}PUT /users/{userId} HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 80
{
"email": "test@test.com",
"username": "test",
"password": "admin123",
"role": "ADMIN"
}DELETE /users/{userId} HTTP/1.1
Accept: */*