Newer Version Available

This content describes an older version of this product. View Latest

Trigger Process Rules

Use the Process Rules resource to trigger process rules. All rules associated with the specified ID will be evaluated, regardless of the evaluation criteria. All IDs must be for records on the same object.
Example usage
1curl https://MyDomainName.my.salesforce.com/services/data/v57.0/process/rules/ -H "Authorization: Bearer token" -H "Content-Type: application/json" -d @rules.json"
Example request body rules.json file
1{
2  "contextIds" : [
3    "001D000000JRWBd",
4    "001D000000I8mIm",
5    "001D000000I8aaf"]
6}
Example JSON response body
1{
2  "errors" : null,
3  "success" : true
4}