LDAP / AD
Bind-based authentication against LDAP / Active Directory — connection CRUD and a test-bind endpoint.
Qeet ID supports LDAP (and Active Directory) authentication via bind login: users authenticate against your directory, and Qeet ID verifies by binding with their credentials. Connections are managed per tenant, with a test-bind to validate config before going live.
Manage connections
/v1/tenants/{tenantID}/ldapList LDAP connections/v1/tenants/{tenantID}/ldapCreate a connection/v1/tenants/{tenantID}/ldap/{id}Update a connection/v1/tenants/{tenantID}/ldap/{id}Delete a connectionTest the bind
Validate host, base DN, bind credentials, and TLS before enabling the connection.
/v1/tenants/{tenantID}/ldap/{id}/testTest bindAuthenticate
/ldap/{id}/authenticateBind-authenticate a usercurl -X POST https://api.id.qeet.in/ldap/$CONN_ID/authenticate \
-H "Content-Type: application/json" \
-d '{"username":"alex","password":"…"}'Use LDAPS / StartTLS
Bind authentication sends credentials to the directory. Always use LDAPS or StartTLS in production so credentials aren't sent in the clear. Validate with the test-bind endpoint first.
SCIM 2.0 (Users + Groups)
Okta/Entra-style provisioning and deprovisioning — SCIM Users, Groups, and PatchOp membership sync, with per-tenant bearer tokens.
Self-serve Admin Portal
A capability-scoped, time-limited link a tenant's own IT admin can follow to configure SAML and/or SCIM directly — no Qeet ID account, no console login.