Skip to content

Latest commit

 

History

History
631 lines (405 loc) · 40.9 KB

EventFrameApi.md

File metadata and controls

631 lines (405 loc) · 40.9 KB

EventFrameApi

Method HTTP request Description
GetByPath GET /eventframes Retrieve an event frame by path.
Get GET /eventframes/{webId} Retrieve an event frame.
Update PATCH /eventframes/{webId} Update an event frame by replacing items in its definition.
Delete DELETE /eventframes/{webId} Delete an event frame.
Acknowledge PATCH /eventframes/{webId}/acknowledge Calls the EventFrame's Acknowledge method.
GetAnnotations GET /eventframes/{webId}/annotations Get an event frame's annotations.
CreateAnnotation POST /eventframes/{webId}/annotations Create an annotation on an event frame.
GetAnnotationById GET /eventframes/{webId}/annotations/{id} Get a specific annotation on an event frame.
UpdateAnnotation PATCH /eventframes/{webId}/annotations/{id} Update an annotation on an event frame by replacing items in its definition.
DeleteAnnotation DELETE /eventframes/{webId}/annotations/{id} Delete an annotation on an event frame.
GetAttributes GET /eventframes/{webId}/attributes Get the attributes of the specified event frame.
CreateAttribute POST /eventframes/{webId}/attributes Create a new attribute of the specified event frame.
CaptureValues POST /eventframes/{webId}/attributes/capture Calls the EventFrame's CaptureValues method.
GetCategories GET /eventframes/{webId}/categories Get an event frame's categories.
CreateConfig POST /eventframes/{webId}/config Executes the create configuration function of the data references found within the attributes of the event frame, and optionally, its children.
FindEventFrameAttributes GET /eventframes/{webId}/eventframeattributes Retrieves a list of event frame attributes matching the specified filters from the specified event frame.
GetEventFrames GET /eventframes/{webId}/eventframes Retrieve event frames based on the specified conditions. By default, returns all children of the specified root event frame with a start time in the past 8 hours.
CreateEventFrame POST /eventframes/{webId}/eventframes Create an event frame as a child of the specified event frame.
GetReferencedElements GET /eventframes/{webId}/referencedelements Retrieve the event frame's referenced elements.
GetSecurity GET /eventframes/{webId}/security Get the security information of the specified security item associated with the event frame for a specified user.
GetSecurityEntries GET /eventframes/{webId}/securityentries Retrieve the security entries associated with the event frame based on the specified criteria. By default, all security entries for this event frame are returned.
CreateSecurityEntry POST /eventframes/{webId}/securityentries Create a security entry owned by the event frame.
GetSecurityEntryByName GET /eventframes/{webId}/securityentries/{name} Retrieve the security entry associated with the event frame with the specified name.
UpdateSecurityEntry PUT /eventframes/{webId}/securityentries/{name} Update a security entry owned by the event frame.
DeleteSecurityEntry DELETE /eventframes/{webId}/securityentries/{name} Delete a security entry owned by the event frame.
GetMultiple GET /eventframes/multiple Retrieve multiple event frames by web ids or paths.
CreateSearchByAttribute POST /eventframes/searchbyattribute Create a link for a "Search EventFrames By Attribute Value" operation, whose queries are specified in the request content. The SearchRoot is specified by the Web Id of the root EventFrame. If the SearchRoot is not specified, then the search starts at the Asset Database. ElementTemplate must be provided as the Web ID of the ElementTemplate, which are used to create the EventFrames. All the attributes in the queries must be defined as AttributeTemplates on the ElementTemplate. An array of attribute value queries are ANDed together to find the desired Element objects. At least one value query must be specified. There are limitations on SearchOperators.
ExecuteSearchByAttribute GET /eventframes/searchbyattribute/{searchId} Execute a "Search EventFrames By Attribute Value" operation.

GetByPath

GetByPath(string path, string selectedFields = null)

Retrieve an event frame by path.

Parameters

Name Type Description Notes
path string The path to the event frame.. [required]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIEventFrame

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

Get

Get(string webId, string selectedFields = null)

Retrieve an event frame.

Parameters

Name Type Description Notes
webId string The ID of the event frame.. [required]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIEventFrame

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

Update

Update(string webId, PIEventFrame eventFrame)

Update an event frame by replacing items in its definition.

Parameters

Name Type Description Notes
webId string The ID of the event frame to update.. [required]
eventFrame PIEventFrame A partial event frame containing the desired changes.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

Delete

Delete(string webId)

Delete an event frame.

Parameters

Name Type Description Notes
webId string The ID of the event frame to delete.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

Acknowledge

Acknowledge(string webId)

Calls the EventFrame's Acknowledge method.

Parameters

Name Type Description Notes
webId string The ID of the event frame.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetAnnotations

GetAnnotations(string webId, string selectedFields = null)

Get an event frame's annotations.

Parameters

Name Type Description Notes
webId string The ID of the owner event frame.. [required]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIItemsAnnotation

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

CreateAnnotation

CreateAnnotation(string webId, PIAnnotation annotation)

Create an annotation on an event frame.

Parameters

Name Type Description Notes
webId string The ID of the owner event frame on which to create the annotation.. [required]
annotation PIAnnotation The new annotation definition.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetAnnotationById

GetAnnotationById(string id, string webId, string selectedFields = null)

Get a specific annotation on an event frame.

Parameters

Name Type Description Notes
id string The Annotation identifier of the specific annotation.. [required]
webId string The ID of the owner event frame.. [required]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIAnnotation

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

UpdateAnnotation

UpdateAnnotation(string id, string webId, PIAnnotation annotation)

Update an annotation on an event frame by replacing items in its definition.

Parameters

Name Type Description Notes
id string The Annotation identifier of the annotation to be updated.. [required]
webId string The ID of the owner event frame of the annotation to update.. [required]
annotation PIAnnotation A partial annotation containing the desired changes.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

DeleteAnnotation

DeleteAnnotation(string id, string webId)

Delete an annotation on an event frame.

Parameters

Name Type Description Notes
id string The Annotation identifier of the annotation to be deleted.. [required]
webId string The ID of the owner event frame of the annotation to delete.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetAttributes

GetAttributes(string webId, string categoryName = null, int? maxCount = null, string nameFilter = null, bool? searchFullHierarchy = null, string selectedFields = null, bool? showExcluded = null, bool? showHidden = null, string sortField = null, string sortOrder = null, int? startIndex = null, string templateName = null, string valueType = null)

Get the attributes of the specified event frame.

Parameters

Name Type Description Notes
webId string The ID of the event frame.. [required]
categoryName string Specify that returned attributes must have this category. The default is no category filter.. [optional]
maxCount int? The maximum number of objects to be returned per call (page size). The default is 1000.. [optional]
nameFilter string The name query string used for finding attributes. The default is no filter.. [optional]
searchFullHierarchy bool? Specifies if the search should include attributes nested further than the immediate attributes of the searchRoot. The default is 'false'.. [optional]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]
showExcluded bool? Specified if the search should include attributes with the Excluded property set. The default is 'false'.. [optional]
showHidden bool? Specified if the search should include attributes with the Hidden property set. The default is 'false'.. [optional]
sortField string The field or property of the object used to sort the returned collection. The default is 'Name'.. [optional]
sortOrder string The order that the returned collection is sorted. The default is 'Ascending'.. [optional]
startIndex int? The starting index (zero based) of the items to be returned. The default is 0.. [optional]
templateName string Specify that returned attributes must be members of this template. The default is no template filter.. [optional]
valueType string Specify that returned attributes' value type must be the given value type. The default is no value type filter.. [optional]

Return type

PIItemsAttribute

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

CreateAttribute

CreateAttribute(string webId, PIAttribute attribute)

Create a new attribute of the specified event frame.

Parameters

Name Type Description Notes
webId string The ID of the event frame on which to create the attribute.. [required]
attribute PIAttribute The definition of the new attribute.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

CaptureValues

CaptureValues(string webId)

Calls the EventFrame's CaptureValues method.

Parameters

Name Type Description Notes
webId string The ID of the event frame.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetCategories

GetCategories(string webId, string selectedFields = null)

Get an event frame's categories.

Parameters

Name Type Description Notes
webId string The ID of the event frame.. [required]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIItemsElementCategory

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

CreateConfig

CreateConfig(string webId, bool? includeChildElements = null)

Executes the create configuration function of the data references found within the attributes of the event frame, and optionally, its children.

Parameters

Name Type Description Notes
webId string The ID of the event frame.. [required]
includeChildElements bool? If true, includes the child event frames of the specified event frame.. [optional]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

FindEventFrameAttributes

FindEventFrameAttributes(string webId, string attributeCategory = null, string attributeDescriptionFilter = null, string attributeNameFilter = null, string attributeType = null, string endTime = null, string eventFrameCategory = null, string eventFrameDescriptionFilter = null, string eventFrameNameFilter = null, string eventFrameTemplate = null, int? maxCount = null, string referencedElementNameFilter = null, bool? searchFullHierarchy = null, string searchMode = null, string selectedFields = null, string sortField = null, string sortOrder = null, int? startIndex = null, string startTime = null)

Retrieves a list of event frame attributes matching the specified filters from the specified event frame.

Parameters

Name Type Description Notes
webId string The ID of the event frame to use as the root of the search.. [required]
attributeCategory string Specify that returned attributes must have this category. The default is no filter.. [optional]
attributeDescriptionFilter string The attribute description filter string used for finding objects. Only the first 440 characters of the description will be searched. For Asset Servers older than 2.7, a 400 status code (Bad Request) will be returned if this parameter is specified. The default is no filter.. [optional]
attributeNameFilter string The attribute name filter string used for finding objects. The default is no filter.. [optional]
attributeType string Specify that returned attributes' value type must be this value type. The default is no filter.. [optional]
endTime string A string representing the latest ending time for the event frames to be matched. The endTime must be greater than or equal to the startTime. The default is '*'.. [optional]
eventFrameCategory string Specify that the owner of the returned attributes must have this category. The default is no filter.. [optional]
eventFrameDescriptionFilter string The event frame description filter string used for finding objects. Only the first 440 characters of the description will be searched. For Asset Servers older than 2.7, a 400 status code (Bad Request) will be returned if this parameter is specified. The default is no filter.. [optional]
eventFrameNameFilter string The event frame name filter string used for finding objects. The default is no filter.. [optional]
eventFrameTemplate string Specify that the owner of the returned attributes must have this template or a template derived from this template. The default is no filter.. [optional]
maxCount int? The maximum number of objects to be returned (the page size). The default is 1000.. [optional]
referencedElementNameFilter string The name query string which must match the name of a referenced element. The default is no filter.. [optional]
searchFullHierarchy bool? Specifies if the search should include objects nested further than immediate children of the given resource. The default is 'false'.. [optional]
searchMode string Determines how the startTime and endTime parameters are treated when searching for event frames. The default is 'Overlapped'.. [optional]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]
sortField string The field or property of the object used to sort the returned collection. The default is 'Name'.. [optional]
sortOrder string The order that the returned collection is sorted. The default is 'Ascending'.. [optional]
startIndex int? The starting index (zero based) of the items to be returned. The default is 0.. [optional]
startTime string A string representing the earliest starting time for the event frames to be matched. startTime must be less than or equal to the endTime. The default is '*-8h'.. [optional]

Return type

PIItemsAttribute

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetEventFrames

GetEventFrames(string webId, bool? canBeAcknowledged = null, string categoryName = null, string endTime = null, bool? isAcknowledged = null, int? maxCount = null, string nameFilter = null, string referencedElementNameFilter = null, string referencedElementTemplateName = null, bool? searchFullHierarchy = null, string searchMode = null, string selectedFields = null, List severity = null, string sortField = null, string sortOrder = null, int? startIndex = null, string startTime = null, string templateName = null)

Retrieve event frames based on the specified conditions. By default, returns all children of the specified root event frame with a start time in the past 8 hours.

Parameters

Name Type Description Notes
webId string The ID of the event frame to use as the root of the search.. [required]
canBeAcknowledged bool? Specify the returned event frames' canBeAcknowledged property. The default is no canBeAcknowledged filter.. [optional]
categoryName string Specify that returned event frames must have this category. The default is no category filter.. [optional]
endTime string The ending time for the search. The endTime must be greater than or equal to the startTime. The searchMode parameter will control whether the comparison will be performed against the event frame's startTime or endTime. The default is '' if searchMode is not one of the 'Backward' or 'Forward*' values.. [optional]
isAcknowledged bool? Specify the returned event frames' isAcknowledged property. The default no isAcknowledged filter.. [optional]
maxCount int? The maximum number of objects to be returned per call (page size). The default is 1000.. [optional]
nameFilter string The name query string used for finding event frames. The default is no filter.. [optional]
referencedElementNameFilter string The name query string which must match the name of a referenced element. The default is no filter.. [optional]
referencedElementTemplateName string Specify that returned event frames must have an element in the event frame's referenced elements collection that derives from the template. Specify this parameter by name.. [optional]
searchFullHierarchy bool? Specifies whether the search should include objects nested further than the immediate children of the search root. The default is 'false'.. [optional]
searchMode string Determines how the startTime and endTime parameters are treated when searching for event frame objects to be included in the returned collection. If this parameter is one of the 'Backward*' or 'Forward*' values, none of endTime, sortField, or sortOrder may be specified. The default is 'Overlapped'.. [optional]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]
severity List Specify that returned event frames must have this severity. Multiple severity values may be specified with multiple instances of the parameter. The default is no severity filter.. [optional]
sortField string The field or property of the object used to sort the returned collection. The default is 'Name' if searchMode is not one of the 'Backward*' or 'Forward*' values.. [optional]
sortOrder string The order that the returned collection is sorted. The default is 'Ascending' if searchMode is not one of the 'Backward*' or 'Forward*' values.. [optional]
startIndex int? The starting index (zero based) of the items to be returned. The default is 0.. [optional]
startTime string The starting time for the search. startTime must be less than or equal to the endTime. The searchMode parameter will control whether the comparison will be performed against the event frame's startTime or endTime. The default is '*-8h'.. [optional]
templateName string Specify that returned event frames must have this template or a template derived from this template. The default is no template filter. Specify this parameter by name.. [optional]

Return type

PIItemsEventFrame

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

CreateEventFrame

CreateEventFrame(string webId, PIEventFrame eventFrame)

Create an event frame as a child of the specified event frame.

Parameters

Name Type Description Notes
webId string The ID of the parent event frame on which to create the event frame.. [required]
eventFrame PIEventFrame The new event frame definition.. [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetReferencedElements

GetReferencedElements(string webId, string selectedFields = null)

Retrieve the event frame's referenced elements.

Parameters

Name Type Description Notes
webId string The ID of the event frame whose referenced elements should be retrieved.. [required]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIItemsElement

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetSecurity

GetSecurity(string webId, List userIdentity, bool? forceRefresh = null, string selectedFields = null)

Get the security information of the specified security item associated with the event frame for a specified user.

Parameters

Name Type Description Notes
webId string The ID of the event frame for the security to be checked.. [required]
userIdentity List The user identity for the security information to be checked. Multiple security identities may be specified with multiple instances of the parameter. If the parameter is not specified, only the current user's security rights will be returned.. [required]
forceRefresh bool? Indicates if the security cache should be refreshed before getting security information. The default is 'false'.. [optional]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIItemsSecurityRights

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetSecurityEntries

GetSecurityEntries(string webId, string nameFilter = null, string selectedFields = null)

Retrieve the security entries associated with the event frame based on the specified criteria. By default, all security entries for this event frame are returned.

Parameters

Name Type Description Notes
webId string The ID of the event frame.. [required]
nameFilter string The name query string used for filtering security entries. The default is no filter.. [optional]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PIItemsSecurityEntry

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

CreateSecurityEntry

CreateSecurityEntry(string webId, PISecurityEntry securityEntry, bool? applyToChildren = null)

Create a security entry owned by the event frame.

Parameters

Name Type Description Notes
webId string The ID of the event frame where the security entry will be created.. [required]
securityEntry PISecurityEntry The new security entry definition. The full list of allow and deny rights must be supplied.. [required]
applyToChildren bool? If false, the new access permissions are only applied to the associated object. If true, the access permissions of children with any parent-child reference types will change when the permissions on the primary parent change.. [optional]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetSecurityEntryByName

GetSecurityEntryByName(string name, string webId, string selectedFields = null)

Retrieve the security entry associated with the event frame with the specified name.

Parameters

Name Type Description Notes
name string The name of the security entry. For every backslash character () in the security entry name, replace with asterisk (). As an example, use domainusername instead of domain\username.. [required]
webId string The ID of the event frame.. [required]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]

Return type

PISecurityEntry

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

UpdateSecurityEntry

UpdateSecurityEntry(string name, string webId, PISecurityEntry securityEntry, bool? applyToChildren = null)

Update a security entry owned by the event frame.

Parameters

Name Type Description Notes
name string The name of the security entry.. [required]
webId string The ID of the event frame where the security entry will be updated.. [required]
securityEntry PISecurityEntry The new security entry definition. The full list of allow and deny rights must be supplied or they will be removed.. [required]
applyToChildren bool? If false, the new access permissions are only applied to the associated object. If true, the access permissions of children with any parent-child reference types will change when the permissions on the primary parent change.. [optional]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

DeleteSecurityEntry

DeleteSecurityEntry(string name, string webId, bool? applyToChildren = null)

Delete a security entry owned by the event frame.

Parameters

Name Type Description Notes
name string The name of the security entry. For every backslash character () in the security entry name, replace with asterisk (). As an example, use domainusername instead of domain\username.. [required]
webId string The ID of the event frame where the security entry will be deleted.. [required]
applyToChildren bool? If false, the new access permissions are only applied to the associated object. If true, the access permissions of children with any parent-child reference types will change when the permissions on the primary parent change.. [optional]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

GetMultiple

GetMultiple(bool? asParallel = null, string includeMode = null, List path = null, string selectedFields = null, List webId = null)

Retrieve multiple event frames by web ids or paths.

Parameters

Name Type Description Notes
asParallel bool? Specifies if the retrieval processes should be run in parallel on the server. This may improve the response time for large amounts of requested attributes. The default is 'false'.. [optional]
includeMode string The include mode for the return list. The default is 'All'.. [optional]
path List The path of an event frame. Multiple event frames may be specified with multiple instances of the parameter.. [optional]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]
webId List The ID of an event frame. Multiple event frames may be specified with multiple instances of the parameter.. [optional]

Return type

PIItemsItemEventFrame

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

CreateSearchByAttribute

CreateSearchByAttribute(PISearchByAttributeEventFrame search)

Create a link for a "Search EventFrames By Attribute Value" operation, whose queries are specified in the request content. The SearchRoot is specified by the Web Id of the root EventFrame. If the SearchRoot is not specified, then the search starts at the Asset Database. ElementTemplate must be provided as the Web ID of the ElementTemplate, which are used to create the EventFrames. All the attributes in the queries must be defined as AttributeTemplates on the ElementTemplate. An array of attribute value queries are ANDed together to find the desired Element objects. At least one value query must be specified. There are limitations on SearchOperators.

Parameters

Name Type Description Notes
search PISearchByAttributeEventFrame . [required]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]

ExecuteSearchByAttribute

ExecuteSearchByAttribute(string searchId, bool? canBeAcknowledged = null, string endTime = null, bool? isAcknowledged = null, int? maxCount = null, string nameFilter = null, string referencedElementNameFilter = null, bool? searchFullHierarchy = null, string searchMode = null, string selectedFields = null, List severity = null, string sortField = null, string sortOrder = null, int? startIndex = null, string startTime = null)

Execute a "Search EventFrames By Attribute Value" operation.

Parameters

Name Type Description Notes
searchId string The encoded search Id of the "Search EventFrames By Attribute Value" operation.. [required]
canBeAcknowledged bool? Specify the returned event frames' canBeAcknowledged property. The default is no canBeAcknowledged filter.. [optional]
endTime string The ending time for the search. endTime must be greater than or equal to the startTime. The searchMode parameter will control whether the comparison will be performed against the event frame's startTime or endTime. The default is '*'.. [optional]
isAcknowledged bool? Specify the returned event frames' isAcknowledged property. The default no isAcknowledged filter.. [optional]
maxCount int? The maximum number of objects to be returned per call (page size). The default is 1000.. [optional]
nameFilter string The name query string used for finding event frames. The default is no filter.. [optional]
referencedElementNameFilter string The name query string which must match the name of a referenced element. The default is no filter.. [optional]
searchFullHierarchy bool? Specifies whether the search should include objects nested further than the immediate children of the search root. The default is 'false'.. [optional]
searchMode string Determines how the startTime and endTime parameters are treated when searching for event frame objects to be included in the returned collection. The default is 'Overlapped'.. [optional]
selectedFields string List of fields to be returned in the response, separated by semicolons (;). If this parameter is not specified, all available fields will be returned.. [optional]
severity List Specify that returned event frames must have this severity. Multiple severity values may be specified with multiple instances of the parameter. The default is no severity filter.. [optional]
sortField string The field or property of the object used to sort the returned collection. The default is 'Name'.. [optional]
sortOrder string The order that the returned collection is sorted. The default is 'Ascending'.. [optional]
startIndex int? The starting index (zero based) of the items to be returned. The default is 0.. [optional]
startTime string The starting time for the search. startTime must be less than or equal to the endTime. The searchMode parameter will control whether the comparison will be performed against the event frame's startTime or endTime. The default is '*-8h'.. [optional]

Return type

Object

[Back to top] [Back to API list] [Back to Model list] [Back to DOCUMENTATION]