Get Attribute
Checks user permissions on the entity and requested attribute.
This operation checks user permissions on the entity and requested attribute and returns the attribute value by its uri.
Request
GET {api_server}/reltio/api/{tenantId}/{attributeUri}
Parameter | Required | Details | |
---|---|---|---|
Headers |
Authorization |
Yes |
Information about authentication access token in format Bearer
|
Response
JSON object representing value of an attribute.
Simple Attribute
GET {{api_server}}/reltio/api/TestTenant/entities/0000EtM/attributes/FirstName/1mtfv6
{
"type": "configuration/entityTypes/HCP/attributes/FirstName",
"ov": true,
"value": "FirstNameValue",
"uri": "entities/0000EtM/attributes/FirstName/1mtfv6"
}
Nested Attribute
GET {{api_server}}/reltio/api/TestTenant/entities/00005KL/attributes/Narcolepsy/2
{
"label": "",
"value": {
"NarcolepsyInterest": [
{
"type": "configuration/entityTypes/HCP/attributes/Narcolepsy/attributes/NarcolepsyInterest",
"ov": true,
"value": "HCP NarcolepsyInterest 01",
"uri": "entities/00005KL/attributes/Narcolepsy/2/NarcolepsyInterest/3"
}
],
"FellowshipYear": [
{
"type": "configuration/entityTypes/HCP/attributes/Narcolepsy/attributes/FellowshipYear",
"ov": true,
"value": "1954",
"uri": "entities/00005KL/attributes/Narcolepsy/2/FellowshipYear/4"
}
]
},
"ov": true,
"uri": "entities/00005KL/attributes/Narcolepsy/2"
}
Simple Attribute Inside Nested
GET {{api_server}}/reltio/api/TestTenant/entities/00005KL/attributes/Narcolepsy/2/NarcolepsyInterest/3
{
"type": "configuration/entityTypes/HCP/attributes/Narcolepsy/attributes/NarcolepsyInterest",
"ov": true,
"value": "HCP NarcolepsyInterest 01",
"uri": "entities/00005KL/attributes/Narcolepsy/2/NarcolepsyInterest/3"
}
Reference Attribute
GET {{api_server}}/reltio/api/TestTenant/entities/00005KL/attributes/Address/00006OP
{
"label": "HCP AddressLine1 01 HCP City 01",
"relationshipLabel": "rank -",
"value": {
"AddressLine1": [
{
"type": "configuration/entityTypes/Location/attributes/AddressLine1",
"ov": true,
"value": "HCP AddressLine1 01",
"uri": "entities/00005KL/attributes/Address/00006OP/AddressLine1/9"
}
],
"City": [
{
"type": "configuration/entityTypes/Location/attributes/City",
"ov": true,
"value": "HCP City 01",
"uri": "entities/00005KL/attributes/Address/00006OP/City/10"
}
]
},
"ov": true,
"uri": "entities/00005KL/attributes/Address/00006OP",
"refEntity": {
"type": "configuration/entityTypes/Location",
"crosswalks": [
{
"uri": "entities/00005KL/crosswalks/00009ab.14",
"type": "configuration/sources/Reltio",
"value": "00009ab",
"createDate": "2017-02-16T16:55:46.128+03:00",
"updateDate": "2017-02-16T16:55:46.128+03:00",
"attributeURIs": [
"entities/00005KL/attributes/Address/00006OP/AddressLine1/9",
"entities/00005KL/attributes/Address/00006OP/City/10"
]
}
],
"objectURI": "entities/00009ab"
},
"refRelation": {
"type": "configuration/relationTypes/HasAddress",
"crosswalks": [
{
"uri": "entities/00005KL/crosswalks/00006OP.15",
"type": "configuration/sources/Reltio",
"value": "00006OP",
"createDate": "2017-02-16T16:55:46.128+03:00",
"updateDate": "2017-02-16T16:55:46.128+03:00"
}
],
"startRefPinned": false,
"endRefPinned": false,
"startRefIgnored": false,
"endRefIgnored": false,
"objectURI": "relations/00006OP"
},
"startObjectCrosswalks": [
{
"type": "configuration/sources/Reltio",
"value": "00005KL"
],
"singleAttributeUpdateDates": {}
}
]
}
Simple Attribute Inside Reference
GET {{api_server}}/reltio/api/TestTenant/entities/00005KL/attributes/Address/00006OP/AddressLine1/9
{
"type": "configuration/entityTypes/Location/attributes/AddressLine1",
"ov": true,
"value": "HCP AddressLine1 01",
"uri": "entities/00009ab/attributes/AddressLine1/9"
}