Returns (Task<IEnumerable>)
This method will check the set Operation Right for the provided item.
Name | Description |
---|---|
folder | |
request |
Example in C#
// Returns: IEnumerable<VerifytRightsResponse>
var verifytRightsResponse = await client.VerifyOperationRightsAsync(FolderInfo folder, VerifyRightsRequest request);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/operationrights/verify \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '[
{
"$type":"Feenics.Keep.WebApi.Model.VerifyRightsRequest, Feenics.Keep.WebApi.Model",
"AppKey":null,
"System":"SYSTEM_VALUE_HERE",
"Action":"Read",
"AppliesToKey":null,
"IncludeChildren":false
}
]'