u/Standard-Emu-6008

what is the Best Practice for Managing API Credentials in Workday Studio Assemblies

What is the recommended way to store sensitive API credentials in Studio assemblies?**

 

## Context

  • We're building a Cloud Integration assembly in Workday Studio that needs to: - Generate API signatures for third-party service calls - Use different credentials for each environment (Dev/Test/Prod) - Support credential rotation without code redeployment

 

## Current Approach (Not Ideal)

  • Currently, we have API credentials hardcoded in Java classes:

```java
private static final String PUBLIC_KEY = "...value...";
private static final String PRIVATE_KEY = "...value...";

 

Thanks for any insights!

reddit.com
u/Standard-Emu-6008 — 4 days ago