curl --request GET \
--url https://your-tenant.bloodhoundenterprise.io/api/v2/extensions-edges \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"name": "<string>",
"description": "<string>",
"is_traversable": true,
"schema_name": "<string>",
"is_builtin": true
}
]
}Experimental - List all Edge Kinds across OpenGraph Schemas
curl --request GET \
--url https://your-tenant.bloodhoundenterprise.io/api/v2/extensions-edges \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 123,
"name": "<string>",
"description": "<string>",
"is_traversable": true,
"schema_name": "<string>",
"is_builtin": true
}
]
}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]+)$Schema names to filter response by
Filter response by whether or not an edge is traversable
Filter results by column boolean value. Valid filter predicates are eq, neq.
^((eq|neq):)?(t|T|TRUE|true|True|f|F|FALSE|false|False)$OK
Show child attributes