ProcViews( int ProcessID, int ViewCategory, int ObjectSpecificID )
Get the existing view names and IDs for the given process name or ID.
Request
Request Data:
- (int) ProcessID (optional) – The ID of the process you want the views from (since RPM11)
- (int) ViewCategory (optional, required if ProcessID is not provided) – The Category ID of the views you want in the response.
- (int) ObjectSpecificID (optional, required if ProcessID is not provided) – The ID of the process you want the views from.
{ "ProcessID": <int>, "ViewCategory": <int>, "ObjectSpecificID": <int> }
Response
{ "Result": { "ProcessID": <int>, // Since RPM17 "Views": [ { "ID": <int>, "Name": <string>, "IsShared": <bool>, "Modified": <date> // Since RPM 26, last modified date for the view }, ] } }
Errors
- Insufficient information passed.