Properties
Get property values for an entity
Return the property values assigned to the given entity, grouped by group name. Active permitted fields with no stored value are still listed, with value omitted.
GET
/
api
/
taxonomy
/
v1
/
property-values
/
{entityType}
/
{entityId}
Get property values for an entity
curl --request GET \
--url https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}import requests
url = "https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"entityId": "<string>",
"entityType": "dataset",
"groups": [
{
"fields": [
{
"allowedValues": [
{
"subfield": "<string>",
"value": "<string>"
}
],
"copyPolicy": "copy",
"propertyId": "<string>",
"propertyLabel": "<string>",
"status": "active",
"type": "text",
"updatedAt": "<string>",
"updatedBy": {
"userID": "<string>",
"username": "<string>"
},
"value": "<string>",
"values": [
"<string>"
]
}
],
"groupName": "<string>"
}
],
"version": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Query Parameters
Entity version. Required for app_version; omitted for all other types (model_version is referenced by its version UUID)
Last modified on September 3, 2026
Was this page helpful?
⌘I
Get property values for an entity
curl --request GET \
--url https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}import requests
url = "https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://mycluster.domino.tech/api/taxonomy/v1/property-values/{entityType}/{entityId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"entityId": "<string>",
"entityType": "dataset",
"groups": [
{
"fields": [
{
"allowedValues": [
{
"subfield": "<string>",
"value": "<string>"
}
],
"copyPolicy": "copy",
"propertyId": "<string>",
"propertyLabel": "<string>",
"status": "active",
"type": "text",
"updatedAt": "<string>",
"updatedBy": {
"userID": "<string>",
"username": "<string>"
},
"value": "<string>",
"values": [
"<string>"
]
}
],
"groupName": "<string>"
}
],
"version": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}