curl --request GET \
--url https://your-tenant.bloodhoundenterprise.io/api/v2/custom-nodes/{kind_name} \
--header 'Authorization: Bearer <token>'{
"id": 1,
"kindName": "KindA",
"config": {
"icon": {
"type": "font-awesome",
"name": "house",
"color": "#FFFFFF"
}
}
}Retrieve the configuration for a specific custom node kind. Returns the display settings and metadata for the requested node kind.
curl --request GET \
--url https://your-tenant.bloodhoundenterprise.io/api/v2/custom-nodes/{kind_name} \
--header 'Authorization: Bearer <token>'{
"id": 1,
"kindName": "KindA",
"config": {
"icon": {
"type": "font-awesome",
"name": "house",
"color": "#FFFFFF"
}
}
}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]+)$Kind Name