This article talks about using an encrypted password for AutoSys REST API calls for various functions.
Use case: The ability to force start a job from a 3rd party application outside of AutoSys using REST API call with an encrypted password.
base64.
echo -n "user:password" | base64
curl -k -X POST -H "Authorization: Basic your_encrypted_password" -H "Content-Type: application/json" -d "{\"jobName\": \"your_jobname\"}" https://your_webservices_url:9443/AEWS/event/force-start-jobyour_jobname" is force started in AutoSys.Reference the REST Webservices OpenAPI Documentation section of the Autosys Workload Automation REST API Swagger Documentation for available API calls.