Revoke a SCIM token
DELETE
/scim-token/{id}
Irreversible and immediate: the IdP stops being able to provision, and directory changes silently stop flowing until a new token is configured there. Existing members keep their access. Requires `sso:manage`.
Path Parameters
idstring
required·
SCIM token id — not the token itself.
Response Body
successboolean
curl -X DELETE 'https://api.elaichi.ai/scim-token/<id>' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json'const response = await fetch('https://api.elaichi.ai/scim-token/<id>', {
method: 'DELETE',
headers: {
'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);import os
import requests
url = "https://api.elaichi.ai/scim-token/<id>"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
response = requests.delete(url, headers=headers)
print(response.json())