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."
}
]
}Manually certify/revoke certification of objects as belonging to the Zone they’re selected by
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."
}
]
}Authorization: Bearer $JWT_TOKEN
Prefer header, used to specify a custom timeout in seconds using the wait parameter as per RFC7240.
The request body for certifying or revoking certification of objects.
OK