Skip to main content
POST
/
api
/
v2
/
asset-group-tags
/
certifications
Certify or Revoke Certification of Objects
curl --request POST \
  --url https://bloodhound.specterops.io/openapi.json/api/v2/asset-group-tags/certifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "member_ids": [
    123
  ],
  "action": 1,
  "note": "<string>"
}
'
{
  "http_status": 400,
  "timestamp": "2024-02-19T19:27:43.866Z",
  "request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "errors": [
    {
      "context": "clients",
      "message": "The JSON payload could not be unmarshalled."
    }
  ]
}
Applies to BloodHound Enterprise

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.

Body

application/json

The request body for certifying or revoking certification of objects.

member_ids
integer<int64>[]
required
Minimum array length: 1
action
enum<integer>
required
Available options:
1,
2
note
string

Response

OK