
sec:credential-set-password( $credential-name as xs:string, $password as xs:string? ) as empty-sequence()
This function updates the password for the specified credential.
| Parameters | |
|---|---|
| credential-name | The name of the credential. | 
| password | The new password. | 
http://marklogic.com/xdmp/privileges/credential-set-password
  This function must be executed against the security database.
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")
    
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.