Invalidate LDAP User Cache API
Dremio v15.0+ provides the /api/v3/cache/authorization/{USER-NAME}
API to invalidate the authorization of a single user or all users in the LDAP user cache. If no username is provided, Dremio invalidates the authorization for all users in the cache. You must be a Dremio administrator to successfully call this API. Group names are not yet supported.
Syntax
Request syntaxcurl -X DELETE http://{DREMIO-HOST}/api/v3/cache/authorization/{USER-NAME} -H "Authorization:_dremio{auth-token}" -H "Accept:application/json"
{USER-NAME}
may contain one username or be left blank to query all users in the LDAP user cache.
Example Request
Example requestcurl -X DELETE http://{DREMIO-HOST}/api/v3/cache/authorization/{jsmith} -H "Authorization:_dremio{auth-token}" -H "Accept:application/json"
Example Response
Example response{
"status": "204",
"description": "no content",
"statusChanged": "deleted"
}
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.