ProcSecurity(
int ProcessID
)Get the security information for a process
Available since RPM18
Request
Request Data:
- (int) ProcessID identify the process by ID
{
"ProcressID": <int>
}Response
{
"Result": {
"ProcessID": <int>,
"AgentUsers": <bool>, // Can Agency users access the process
"CustomerUsers": <bool>, // Can Agency users access the process
"RolesAndGroups": [
{
"ID": <int> // Role or Group that can access the process
},
// ... more Roles and Groups IDs
]
}
}Errors
- “Process not found” – If the process could not be found.