Return the full object property details for an object with the given primary key. Full property details includes ID, in addition to value. If the object exists.
object
Property details response
list<Property>
map<SecurityKey, ObjectComponentSecurity>
1
2
3
curl \
-H "Authorization: Bearer $TOKEN" \
"https://$HOSTNAME/api/gotham/v1/objects/ri.gotham.111111-0.object-internal.111111/properties"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"properties": [
{
"propertyId": "abc123",
"propertyType": "com.palantir.property.name",
"value": {
"FIRST_NAME": "John",
"LAST_NAME": "Smith"
}
},
{
"propertyId": "def456",
"propertyType": "com.palantir.property.age",
"value": 37
}
]
}