Get warehouse tags and object schema
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/library-tags-objects/"
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/projects/{project_id}/library-tags-objects/', 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/projects/{project_id}/library-tags-objects/ \
--header 'Authorization: Bearer <token>'{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Projects
Get warehouse tags and object schema
Returns markdown sections tag_hierarchies, document_tags, and
knowledge_graph_objects for retrieval filtering.
GET
/
projects
/
{project_id}
/
library-tags-objects
/
Get warehouse tags and object schema
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/library-tags-objects/"
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/projects/{project_id}/library-tags-objects/', 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/projects/{project_id}/library-tags-objects/ \
--header 'Authorization: Bearer <token>'{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}