Overview
- Introduction
- Authentication
- Examples
Endpoints
- Identities
- Token Auth
- Universal Auth
- GCP Auth
- Alibaba Cloud Auth
- TLS Certificate Auth
- AWS Auth
- OCI Auth
- Azure Auth
- Kubernetes Auth
- OIDC Auth
- JWT Auth
- LDAP Auth
- Groups
- Organizations
- Projects
- Project Users
- Project Groups
- Project Identities
- Project Roles
- Project Templates
- Environments
- Folders
- Secret Tags
- Secrets
- Dynamic Secrets
- Secret Imports
- Secret Rotations
- Secret Scanning
- Identity Specific Privilege
- App Connections
- Secret Syncs
- Integrations
- Service Tokens
- Audit Logs
Infisical PKI
- Subscribers
- Certificate Authorities
- Certificates
- Certificate Templates
- Certificate Collections
- PKI Alerting
Infisical SSH
- Hosts
- Host Groups
- Certificates
- Certificate Authorities
- Certificate Templates
Infisical KMS
- Keys
- Encryption
- Signing
LDAP SSO
Get LDAP SSO Config
Get LDAP config
GET
/
api
/
v1
/
ldap
/
config
cURL
Copy
Ask AI
curl --request GET \
--url https://us.infisical.com/api/v1/ldap/config \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"id": "<string>",
"organization": "<string>",
"isActive": true,
"url": "<string>",
"bindDN": "<string>",
"bindPass": "<string>",
"uniqueUserAttribute": "<string>",
"searchBase": "<string>",
"searchFilter": "<string>",
"groupSearchBase": "<string>",
"groupSearchFilter": "<string>",
"caCert": "<string>"
}
Authorizations
An access token in Infisical
Query Parameters
The ID of the organization to get the LDAP config for.
Response
200
application/json
Default Response
The response is of type object
.
Was this page helpful?
cURL
Copy
Ask AI
curl --request GET \
--url https://us.infisical.com/api/v1/ldap/config \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"id": "<string>",
"organization": "<string>",
"isActive": true,
"url": "<string>",
"bindDN": "<string>",
"bindPass": "<string>",
"uniqueUserAttribute": "<string>",
"searchBase": "<string>",
"searchFilter": "<string>",
"groupSearchBase": "<string>",
"groupSearchFilter": "<string>",
"caCert": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.