Skip to main content
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>"
}
List all encrypted credentials stored for your organization. Returns metadata only (name, creation date, last update) — encrypted values are never returned through this endpoint.

Authorizations

X-API-Key
string
header
required

Simplex API Key

Response

200 - application/json

List of credentials

succeeded
boolean
required
credentials
object[]
error
string