Delete an API key (superuser only)
import requests
url = "https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/ \
--header 'Authorization: Bearer <token>'Organization API Keys
Delete an API key (superuser only)
Permanently deletes the key; it immediately stops authenticating.
DELETE
/
organization-api-keys
/
{id}
/
Delete an API key (superuser only)
import requests
url = "https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request DELETE \
--url https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/ \
--header 'Authorization: Bearer <token>'