Relations
Map the web of connections – Fusionbase's Relations Endpoint unveils the intricate network of relationships between entities and data features.
Example: Using the Relations Endpoint
POST https://api.fusionbase.com/api/v2/relation/resolve/<RELATION_ID>/<ENTITY_ID>Expected Response:
[
{
"label": "ENTITY_NETWORK",
"entity_from": {
"fb_entity_id": "75e8887e25587ed64cc8e1733a6c7160",
"entity_type": "ORGANIZATION",
"display_name": "ADOS GmbH"
},
"entity": {
"entity_type": "FEATURE",
"entity_subtype": "NETWORK",
"fb_semantic_id": "feature|network|organization:75e8887e25587ed64cc8e1733a6c7160",
"value": {
"root": {
"fb_entity_id": "75e8887e25587ed64cc8e1733a6c7160",
"entity_type": "ORGANIZATION",
"display_name": "ADOS GmbH"
},
"links": [
{
"depth": 1,
"relation_id": "135ff9ab592bb1b41ab948b3ad95f91f",
"label": "MANAGING_DIRECTOR",
"entity_from": {
"fb_entity_id": "8a00ab6520e0b64eb83345586ba1613e",
"entity_type": "PERSON",
"display_name": "Herbert Rütgers"
},
"entity_to": {
"fb_entity_id": "75e8887e25587ed64cc8e1733a6c7160",
"entity_type": "ORGANIZATION",
"display_name": "ADOS GmbH"
},
"meta": {
"start_date": "2002-06-03",
"end_date": "2020-07-06"
}
}
// Additional links omitted for brevity
]
}
}
}
]
Breakdown of Response Structure:
Last updated
Was this helpful?
