cli2 updating title
Hi
I am trying to get the Title of any item I am using powershell which works well for New items so its not a permissioning thing . Script goes like this after I have successfully logged in using
invoke-Expression to sign in.
$tkn = id the UUID of item
$emi = Title
Title
op item get $tkn --fields $eml
also tried
op item get $tkn Title
0
Comments
-
Hi @Corval. You could always try using
op read <secret_reference>
for getting specific fields inside an item. In your case, the secret reference for the title would beop://<the_vault_of_the_item>/<the_UUID_of_item>/title
. Thenop read op://<the_vault_of_the_item>/$tkn/$emi
should do the trick.Hope I could help,
Andi0 -
Thanks worked a treat .
0 -
Great! Glad I could help!
0
This discussion has been closed.