Revoke a managed-service credential reference
import requests
url = "https://platform.ankra.app/org/service-admission/credential-grants/{grant_id}"
headers = {"cookie": "ankra_session="}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {cookie: 'ankra_session='}};
fetch('https://platform.ankra.app/org/service-admission/credential-grants/{grant_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://platform.ankra.app/org/service-admission/credential-grants/{grant_id} \
--cookie ankra_session=Services
Revoke a managed-service credential reference
Requires the applications rollout and live organisation membership. Metadata reads require applications.read; writes require applications.write, intersected with live PAT scope. Browser mutations require CSRF. No secret values or store paths are returned; all responses are no-store. This registry operation does not connect or restart a workload.
DELETE
/
org
/
service-admission
/
credential-grants
/
{grant_id}
Revoke a managed-service credential reference
import requests
url = "https://platform.ankra.app/org/service-admission/credential-grants/{grant_id}"
headers = {"cookie": "ankra_session="}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {cookie: 'ankra_session='}};
fetch('https://platform.ankra.app/org/service-admission/credential-grants/{grant_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://platform.ankra.app/org/service-admission/credential-grants/{grant_id} \
--cookie ankra_session=