sources_ldap_debug_retrieve
GET/api/v3//sources/ldap/:slug/debug/
Get raw LDAP data to debug
Request
Path Parameters
slug stringrequired
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
user object[]required
group object[]required
membership object[]required
{
"user": [
{}
],
"group": [
{}
],
"membership": [
{}
]
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
property name* any
Validation Error
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '/api/v3/sources/ldap/:slug/debug/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'