Get a RuleConditionExpression
/crmRestApi/resources/11.13.18.05/webActivityRules/{WebActivityRuleNumber}/child/WebActivityRuleCondition/{WebActyRuleCondId}/enclosure/RuleConditionExpression
Request
-
WebActivityRuleNumber(required): string
The public unique identifier of the web activity rule.
-
WebActyRuleCondId(required): integer(int64)
The unique identifier of the web activity rule condition.
There's no request body for this operation.
Back to TopResponse
- application/octet-stream
Default Response
string(binary)Examples
The following example shows how to get a rule condition expression by submitting a GET request on the REST resource using cURL.
cURL Command
curl -u <username:password> \ -X GET
https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/webActivityRules/{WebActivityRuleNumber}/child/WebActivityRuleCondition/{WebActyRuleCondId}/enclosure/RuleConditionExpression
Example of Response Body
The following shows an example of the response body in JSON format.
{
"objectName":"webActivities",
"rule":{
"conditions" : {
"allOf":[
{
"attribute":"ElqEmailAddress",
"operator":"EQUALS",
"value": "abc.xyz@example.com"
}
]
}
}
}