List all encrypted credentials for your organization. Returns metadata only (name, dates) — not the encrypted values.
Python
Python SDK
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']})")
{ "succeeded": true, "credentials": [ { "id": "<string>", "name": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "error": "<string>" }
Simplex API Key
List of credentials
Show child attributes
Was this page helpful?