Hi, I try to use post /v2/entity to create or update entities (as described in the doc), but it cannot add classification to an existing entity while it can update the attributes of the entity.
I also try POST /v2/entity/bulk/classification using the following request:
{
"classification": {"entityStatus": "ACTIVE", "propagate": True, "removePropagationsOnEntityDelete": True, "typeName": "my_tag"},
"entitiesUniqueAttributes": [{"property1": {"qualifiedName": "my_name"}}],
"entityTypeName": "my_type"
}
It does not work, either.