configuration / system / ext-auth / ldap

CLI REST-API

mappings

The submenu mappings (List of mappings) contains the following:

Menus:
mapping1 (mapping1)
server1 (server1)

Objects: none

Commands:
add-mapping (adds a mapping)
delete-mapping (deletes a mapping)



See also:
/configuration/system/ext-auth/ldap/mappings/mapping[ID]
/configuration/system/ext-auth/ldap/mappings/add-mapping: adds a mapping
/configuration/system/ext-auth/ldap/mappings/delete-mapping: deletes a mapping

REST-API Support:


This menu is supported by the REST API:

Method: GET
URL: /api/configuration/system/ext-auth/ldap/mappings


Example using curl:
curl /api/configuration/system/ext-auth/ldap/mappings


Method: PATCH
URL: /api/configuration/system/ext-auth/ldap/mappings
Body:
{
  \"objects\": \"new-values\"
}

Example using curl:
curl -X PATCH /api/configuration/system/ext-auth/ldap/mappings
-d "{
  \"objects\": \"new-values\"
}"


Method: POST
URL: /api/configuration/system/ext-auth/ldap/mappings
Body:
{
  \"objects\": \"new-values\"
}

Example using curl:
curl -X POST /api/configuration/system/ext-auth/ldap/mappings
-d "{
  \"objects\": \"new-values\"
}"