Some of the actions/tasks may require credentials.
Will workflows use a credential vault for tokens and passwords?
Solved! Go to Solution.
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.
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: "...",
});