Hi,
Can we use the PS module to change the password for an entity?
Thanks
Hello Jennifer,
You can change an entry's password by overriding the "passwordItem" property with your new password. Here's the code to do so;
$Entry = (Get-DSEntry -EntryId $EntryId).Body.data
$Entry.data.passwordItem = @{
hasSensitiveData = $false
sensitiveData = $YourNewPassword
}
Update-DSEntryBase (ConvertTo-Json $Entry -Depth 10)
Best regards,
Alexandre Martigny