Skip to main content
Python SDK
import requests

url = 'https://api.simplex.sh/pa_delete_credential'
headers = {
    'Authorization': 'Bearer your_api_key_here',
    'Content-Type': 'application/json'
}
data = {
    'name': 'cmm_production'
}

response = requests.post(url, headers=headers, json=data)
result = response.json()
print(f"Deleted: {result['succeeded']}")
{
  "succeeded": true
}
Delete a stored prior authorization portal credential by name.

Authorizations

X-API-Key
string
header
required

Simplex API Key

Body

application/json
name
string
required

The name of the credential to delete.

Response

Credential deleted successfully

succeeded
boolean
required

Whether the credential was deleted successfully.