11 May 2023 11:03 AM - edited 20 Jul 2023 01:09 PM
Some of the actions/tasks may require credentials.
Will workflows use a credential vault for tokens and passwords?
Solved! Go to Solution.
11 May 2023 11:07 AM
Workflow actions for integration typically require connecting to third-party systems and coming with their own settings schema. Those connections are then managed in Dynatrace settings 2.0. Ad-hoc scripts can leverage both settings and the credential vault via the SDKs.
12 Sep 2023 05:44 AM
For reference, you can access the Credential Vault by following the following API instructions.
https://developer.dynatrace.com/reference/sdks/client-classic-environment-v2/#getcredentialsdetails
import { credentialVaultClient } from "@dynatrace-sdk/client-classic-environment-v2";
const data = await credentialVaultClient.getCredentialsDetails({
id: "...",
});