Command Reference > entity > putClassifications
Update classifications to an existing entity represented by a guid.
pv entity putClassifications --guid=<val> --payloadFile=<val>
--guid
(string)
The globally unique identifier of the entity.
--payloadFile
(string)
File path to a valid JSON document.
None
Catalog Data Plane > Entity > Update Classifications
PUT https://{accountName}.purview.azure.com/catalog/api/atlas/v2/entity/guid/{guid}/classifications
Update existing classifications to an existing entity via the entity GUID.
pv entity putClassifications --guid "bbb9ff1d-f880-435e-ac87-d6fd5676d8f0" --payloadFile "/path/to/file.json"
Example payload.
[
{
"typeName": "MICROSOFT.FINANCIAL.CREDIT_CARD_NUMBER",
"attributes": {
"confidence": 2
}
}
]