I am using API from https://docs.netapp.com/us-en/ontap-restapi/ontap/post-protocols-file-security-permissions-.html#related-ontap-commands to setup file permissions at junction path level
The API payload has APPLY TO set as
"apply_to": {
"files": true,
"sub_folders": true,
"this_folder": true
}
However the response from API gives back permissions as applied only for sub_folders and this_folder
"owner": "group",
"path": "/test_oct_vol",
"acls": [
{
"access": "access_allow",
"user": "userid",
"apply_to": {
"this_folder": true,
"sub_folders": true
}
:
:
}
Why are permissions not getting applied at files level. Please can someone help.