Download the full secret (superuser or org admin)
import requests
url = "https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/reveal/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/reveal/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/reveal/ \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"api_key": "<string>"
}Organization API Keys
Download the full secret (superuser or org admin)
GET
/
organization-api-keys
/
{id}
/
reveal
/
Download the full secret (superuser or org admin)
import requests
url = "https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/reveal/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/reveal/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/organization-api-keys/{id}/reveal/ \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"api_key": "<string>"
}