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']}")