Skip to main content

Process Rule

Process a rule defined in the system.

GET https://instance.securid.com/aveksa/command.submit?cmd=processRule

info

The command expects a valid user token for a user that has Rule:Admin privileges. Use the Configure button to change the level of security enforced

Request

Parameters

processRule
formatproperties - (Default) key=value. most useful when requesting a single object. If multiple objects are returned, values is a csv. ie key=value1,value2,value3 where value1 is the value for the first object, value2 is the value for the 2nd object, etc.

json - Useful format for parsing into javascript or other languages. See www.json.org for details.
ruleThe optional name of a rule to specifically process. If this parameter is not specified, all active rules in the system will be evaluated.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
run-idThe id assigned to the rule processing.
run-source-xxThe names of the rules that we processed as part of this run where xx is the run id.

Examples

Request

curl -K -X GET  \
"https://instance.securid.com/aveksa/command.submit?cmd=processRule&format=json&rule=myRule" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"

Response

{
"data": {
"type": "processRule",
"run-id": "5497",
"run-source-5497": "Attribute Synchronization"
}
}