Loading TOC...

sec.credentialSetPassword

sec.credentialSetPassword(
   credential-name as String,
   password as String?
) as null

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



    declareUpdate();
    const sec = require('/MarkLogic/security.xqy');

    sec.credentialSetPassword("my-secure-credential", "newpassword");
      

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.