API Reference
IFC Classification
List classification references relations
code examples curl location globoff 'https //api catenda com/v2/projects/{project id}/ifc/classification references/relations' \\ \ header 'accept application/json' \\ \ header 'content type application/json'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); var requestoptions = { method 'get', headers myheaders, redirect 'follow' }; fetch("https //api catenda com/v2/projects/{project id}/ifc/classification references/relations", requestoptions) then(response => response text()) then(result => console log(result)) catch(error => console log('error', error));require "uri" require "json" require "net/http" url = uri("https //api catenda com/v2/projects/{project id}/ifc/classification references/relations") https = net http new(url host, url port) https use ssl = true request = net http get new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" response = https request(request) puts response read body import requests import json url = "https //api catenda com/v2/projects/{project id}/ifc/classification references/relations" payload = {} headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("get", url, headers=headers, data=payload) print(response text) responses // ok \[ { "objectid" 417236566151, "name" "showers", "ifctype" "ifcclassificationreference", "attributes" {}, "products" \[ { "url" "https //api catenda com/v2/projects/67551168422040148d8ae198a321494d/ifc/products/417236566121", "objectid" 417236566121, "globalid" "2z$4$ztgh92fufpauq 65c", "name" "strainers carbon steel flanged 80 mm 3589667", "ifctype" "ifcflowcontroller" } ], "classification" { "url" "https //api catenda com/v2/projects/67551168422040148d8ae198a321494d/ifc/classifications/417236566342", "objectid" 417236566342, "name" "uniformat", "ifctype" "ifcclassification" } } ]