List all encrypted credentials for your organization. Returns metadata only (name, dates) — not the encrypted values.
Copy
Ask AI
from simplex import SimplexClient
client = SimplexClient(api_key="your_api_key")
result = client.list_credentials()
for cred in result["credentials"]:
print(f"{cred['name']} (created {cred['created_at']})")
List all encrypted credentials stored for your organization. Returns metadata only (name, creation date, last update) — encrypted values are never returned through this endpoint.
from simplex import SimplexClient
client = SimplexClient(api_key="your_api_key")
result = client.list_credentials()
for cred in result["credentials"]:
print(f"{cred['name']} (created {cred['created_at']})")