curl --request GET \
--url https://your-tenant.bloodhoundenterprise.io/api/v2/graphs/relay-targets \
--header 'Authorization: Bearer <token>'{
"data": {
"nodes": {},
"edges": [
{
"source": "<string>",
"target": "<string>",
"label": "<string>",
"kind": "<string>",
"lastSeen": "2023-11-07T05:31:56Z",
"properties": {}
}
]
}
}Returns a graph representing the various nodes that are valid relay targets for this edge
curl --request GET \
--url https://your-tenant.bloodhoundenterprise.io/api/v2/graphs/relay-targets \
--header 'Authorization: Bearer <token>'{
"data": {
"nodes": {},
"edges": [
{
"source": "<string>",
"target": "<string>",
"label": "<string>",
"kind": "<string>",
"lastSeen": "2023-11-07T05:31:56Z",
"properties": {}
}
]
}
}Authorization: Bearer $JWT_TOKEN
Prefer header, used to specify a custom timeout in seconds using the wait parameter as per RFC7240. Passing in wait=-1 bypasses all timeout limits when the feature is enabled.
^wait=(-1|[0-9]+)$The ID of the starting node.
The ID of the ending node.
The type of edge to show the composition for.
Returns graph data that contains a collection of nodes that are valid relay targets related to the composition of the edge queried.
Show child attributes