Skip to main content
Python SDK
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"
    }
  ]
}
List all stored prior authorization portal credentials for your organization. Returns metadata only (name, portal, dates) — not the encrypted values.

Authorizations

X-API-Key
string
header
required

Simplex API Key

Query Parameters

portal
enum<string>

Filter credentials by portal (e.g. "covermymeds")

Available options:
covermymeds

Response

200 - application/json

List of credentials

succeeded
boolean
required

Whether the request was successful.

credentials
object[]
required

List of stored credentials.