Skip to main content
PUT
/
api
/
v2
/
custom-nodes
/
{kind_name}
Update custom node
curl --request PUT \
  --url https://bloodhound.specterops.io/openapi.json/api/v2/custom-nodes/{kind_name} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "config": {
    "icon": {
      "type": "font-awesome",
      "name": "house",
      "color": "#333"
    }
  }
}
'
{
  "id": 123,
  "kindName": "<string>",
  "config": {
    "icon": {
      "type": "<string>",
      "name": "<string>",
      "color": "<string>"
    }
  }
}
Applies to BloodHound Enterprise and CE

Authorizations

Authorization
string
header
required

Authorization: Bearer $JWT_TOKEN

Headers

Prefer
string
default:wait=30

Prefer header, used to specify a custom timeout in seconds using the wait parameter as per RFC7240.

Path Parameters

kind_name
string
required

Kind Name

Body

application/json
config
object

Response

OK

id
integer
kindName
string
config
object