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
Update LDAP SSO Config
Update LDAP config
PATCH
/
api
/
v1
/
ldap
/
config
cURL
Copy
Ask AI
curl --request PATCH \
--url https://us.infisical.com/api/v1/ldap/config \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"isActive": true,
"url": "<string>",
"bindDN": "<string>",
"bindPass": "<string>",
"uniqueUserAttribute": "<string>",
"searchBase": "<string>",
"searchFilter": "<string>",
"groupSearchBase": "<string>",
"groupSearchFilter": "<string>",
"caCert": "<string>",
"organizationId": "<string>"
}'
Copy
Ask AI
{
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"isActive": true,
"orgId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "<string>",
"searchBase": "<string>",
"searchFilter": "",
"groupSearchBase": "",
"uniqueUserAttribute": "",
"groupSearchFilter": ""
}
Authorizations
An access token in Infisical
Body
application/json
Response
200
application/json
Default Response
The response is of type object
.
Was this page helpful?
cURL
Copy
Ask AI
curl --request PATCH \
--url https://us.infisical.com/api/v1/ldap/config \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"isActive": true,
"url": "<string>",
"bindDN": "<string>",
"bindPass": "<string>",
"uniqueUserAttribute": "<string>",
"searchBase": "<string>",
"searchFilter": "<string>",
"groupSearchBase": "<string>",
"groupSearchFilter": "<string>",
"caCert": "<string>",
"organizationId": "<string>"
}'
Copy
Ask AI
{
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"isActive": true,
"orgId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "<string>",
"searchBase": "<string>",
"searchFilter": "",
"groupSearchBase": "",
"uniqueUserAttribute": "",
"groupSearchFilter": ""
}
Assistant
Responses are generated using AI and may contain mistakes.