sec:credential-set-password

sec:credential-set-password(
   $credential-name as xs:string,
   $password as xs:string?
) as empty-sequence()

Summary

This function updates the password for the specified credential.

Parameters
credential-name The name of the credential.
password The new password.

Required Privileges

http://marklogic.com/xdmp/privileges/credential-set-password

Usage Notes

This function must be executed against the security database.

Example



xquery version "1.0-ml"; 
 
import module namespace sec = "http://marklogic.com/xdmp/security" 
      at "/MarkLogic/security.xqy";
 
sec:credential-set-password("my-secure-credential", "newpassword")
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy