Hi @mayank_gupta,
The error you are encountering, "INVALID_PARAMETER_VALUE," indicates that the privilege "ALL PRIVILEGES" is not applicable to the entity you are trying to modify. This error message suggests that the privilege version of the metastore in use is 1.0, which might not support the "ALL PRIVILEGES" setting for the specified catalog.
Instead of using "ALL PRIVILEGES," try specifying individual privileges that are supported for the catalog entity
payload = {
"changes": [
{
"principal": "<group_name>",
"add": [
"SELECT",
"MODIFY",
"CREATE"
]
}
]
}