LDAP User Authentication
Last updated
Last updated
POST /api/v1/user_authentication/login_with_cert HTTP/1.1
Content-Type: multipart/form-data
Accept: */*
Content-Length: 33
{
"file": "text",
"password": "text"
}POST /api/v1/user_authentication/login HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 49
{
"username": "text",
"password": "text",
"ou": "text"
}POST /api/v1/user_authentication/logout?token=text HTTP/1.1
Accept: */*
GET /api/v1/user_authentication/verify?token=text HTTP/1.1
Accept: */*
POST /api/v1/user_authentication/add_user HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 88
{
"cn": "text",
"sn": "text",
"given_name": "text",
"email": "name@gmail.com",
"password": "text"
}GET /api/v1/user_authentication/search_users?ou=text HTTP/1.1
Accept: */*
PUT /api/v1/user_authentication/modify_user_email?cn=text&new_email=text HTTP/1.1
Accept: */*
DELETE /api/v1/user_authentication/delete_user?cn=text HTTP/1.1
Accept: */*
GET /api/v1/user_authentication/check_user_exists?cn=text HTTP/1.1
Accept: */*