Hello, I am trying to set up a program calling rest API in order to trigger a databricks job. The issue I am facing is that I cannot encrypt the token and it only works if the oauth_bearer value is provided in plaintext. This gives me error 401: filename pwfile 'testpw.txt'; proc pwencode in="foo" out=pwfile method=sas005; run; data _null_; infile pwfile truncover; input line :$200.; call symputx('dbxtoken',line); run; filename jpl 'testin.json'; proc json out=jpl; write values "job_id" "1...