Visualize Multi
Generate a combined HTML visualization of graph data from multiple users’ datasets.
This endpoint aggregates knowledge graphs from multiple user+dataset pairs into a single interactive visualization, with each user’s nodes tagged for color-by-user rendering.
Request Body
A JSON array of objects, each with:
- user_id (UUID): The user who owns the dataset
- dataset_id (UUID): The dataset to include
Response
Returns an HTML page containing the combined interactive graph visualization.
Error Codes
- 403 Forbidden: Caller is not a superuser
- 409 Conflict: A user/dataset pair does not exist, is not readable,
or visualization failed (detail in the
errorfield)
Notes
- Requires superuser privileges to view other users’ data
- Each user+dataset pair must exist and be accessible
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
UUID of the user who owns the dataset (superuser-only endpoint; obtain via the permissions/users APIs).
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
UUID of the dataset to include in the combined visualization (must be readable by user_id).
"7c9e6679-7425-40de-944b-e07fc1f90ae7"
Response
Successful Response