List all stored prior authorization portal credentials for your organization. Returns metadata only (name, portal, dates) — not the encrypted values.
Python
import requests url = 'https://api.simplex.sh/pa_list_credentials' headers = { 'Authorization': 'Bearer your_api_key_here' } response = requests.get(url, headers=headers) result = response.json() for cred in result['credentials']: print(f"{cred['name']} ({cred['portal']}, created {cred['created_at']})")
{ "succeeded": true, "credentials": [ { "credential_id": "<string>", "name": "<string>", "portal": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ] }
Simplex API Key
Filter credentials by portal (e.g. "covermymeds")
covermymeds
List of credentials
Whether the request was successful.
List of stored credentials.
Show child attributes
Was this page helpful?