Update auto-login credentials
- Última actualización2020/05/12
Update auto-login credentials
Use the Update auto login credential values API to change and save login credential values to the Credential Vault for the specified Automation Anywhere user and their device.
Prerequisites
- Permissions
- You must have the
AAE_Admin
role. - JSON Web Token (JWT)
- All Control Room APIs require a JSON Web Token (JWT) to access the APIs. Generate an authentication token using the Enterprise 11 Authentication API.
Note:
- Use the Swagger definition files installed with your Control Room to test the APIs. View the available Swagger APIs at
http://<your_control_room_url>/swagger/
. - You can also use a REST client to complete this task.
Procedure
Note: You can also run REST requests from a command terminal. The following is a
curl request example, formatted for readability.
curl -X PUT "<your_control_room_url>/v1/credentialvault/external/credentials/loginsetting" -H "accept: application/json"
-H "X-Authorization: <authentication_token>" -H "Content-Type: application/json"
-d "{
\"Username\": \"string\",
\"Windows_Username\": \"string\",
\"Windows_Password\": \"string\"
}"