Get Interactions
Learn about retrieving an interaction object.
Reltio Intelligent 360
This operation allows you to retrieve an interaction object (full or partial) by URI from tenant data. For more information about the Interactions see topic Interactions API.
Request
GET {TenantURL}/interactions/{InteractionURI}
For more information, see Get Interactions.
Request Example
GET {TenantURL}/interactions/005Xrer
Headers: Authorization: Bearer 204938ca-2cf7-44b0-b11a-1b4c59984512
Response Example
{
"uri": "interactions/005Xrer",
"type": "configuration/interactionTypes/Lunch",
"createdBy": "admin",
"createdTime": 1354793034432,
"updatedBy": "null",
"updatedTime": 1354793034432,
"timestamp": 1338580800000,
"attributes": {
"Place": [{
"type": "configuration/interactionTypes/Meeting/attributes/Place",
"value": "Shire, Bag End in Hobbiton",
"uri": "interactions/005Xrer/attributes/Place/1"
}],
"Notes": [{
"type": "configuration/interactionTypes/Meeting/attributes/Notes",
"value": "All participants eat Lembas",
"uri": "interactions/005Xrer/attributes/Notes/49"
}]
},
"crosswalks": [{
"uri": "interactions/005Xrer/crosswalks/8H",
"type": "configuration/sources/Reltio",
"value": "005Xrer",
"attributes": ["interactions/005Xrer/attributes/Notes/49", "interactions/005Xrer/attributes/Place/1"]
}],
"members": {
"Organizers": {
"type": "configuration/interactionTypes/Meeting/memberTypes/Organizers",
"uri": "interactions/interactionId/members/Organizers",
"members": [{
"objectURI": "entities/00003CD",
"type": "configuration/entityTypes/Individual",
"label": "Beorn"
}]
},
"Chefs": {
"type": "configuration/interactionTypes/Lunch/memberTypes/Chefs",
"uri": "interactions/interactionId/members/Chefs",
"members": [{
"objectURI": "entities/00003CD",
"type": "configuration/entityTypes/Individual",
"label": "Beorn"
}]
},
"Participants": {
"type": "configuration/interactionTypes/Meeting/memberTypes/Participants",
"uri": "interactions/interactionId/members/Participants",
"members": [{
"objectURI": "entities/0000145",
"type": "configuration/entityTypes/Individual",
"label": "Frodo Baggins Hobbit"
}, {
"objectURI": "entities/0000289",
"type": "configuration/entityTypes/Individual",
"label": "Bilbo Baggins Hobbit"
}]
}
}
}