Nodes
Last updated
GET /api/nodes/{id} HTTP/1.1
Accept: */*
{
"data": [
{
"groups": [
{
"external_id": "foo",
"name": "foo",
"type": "foo_type"
}
],
"parent": null
},
{
"parent": "foo",
"resources": [
{
"external_id": "bar",
"name": "bar",
"type": "foo_type"
},
{
"external_id": "baz",
"name": "baz",
"type": "foo_type"
}
]
}
]
}GET /api/nodes HTTP/1.1
Accept: */*
{
"data": [
{
"groups": [
{
"external_id": "foo",
"name": "foo",
"type": "foo_type"
}
],
"parent": null
},
{
"parent": "foo",
"resources": [
{
"external_id": "bar",
"name": "bar",
"type": "foo_type"
},
{
"external_id": "baz",
"name": "baz",
"type": "foo_type"
}
]
}
]
}GET /api/lineage/update_nodes_domains HTTP/1.1
Accept: */*