Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
import requests url = "https://eu.app.clarifeye.ai/api/v1/organizations/{id}/provisioning-config/" 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/organizations/{id}/provisioning-config/', 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/organizations/{id}/provisioning-config/ \ --header 'Authorization: Bearer <token>'
{ "allowed_provisioning_domains": [ "loreal.com" ] }
Use Authorization: Bearer
UUID of the organization
Current configuration.
Email domains that provisioning may pre-create accounts for.