Skip to content

Commit

Permalink
Automated commit 'Merge pull request #1932 from sailpoint/fix/setPass…
Browse files Browse the repository at this point in the history
…wordCommand

Include the flag for no line feed when generating password.' by github action: 12437872385
  • Loading branch information
tyler-mairose-sp committed Dec 20, 2024
1 parent 671144a commit a1ab308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idn/v3/paths/set-password.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ post:
To generate the encryptedPassword (RSA encrypted using publicKey) for the request body, run the following command:
```bash
echo "myPassword" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64
echo -n "myPassword" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64
```
In this example, myPassword is the plain text password being set and encrypted, and public_key.pem is the path to the public key file. You can retrieve the required publicKey, along with other information like identityId, sourceId, publicKeyId, accounts, and policies, using the Query Password Info endpoint.
Expand Down

0 comments on commit a1ab308

Please sign in to comment.