Salesforce Bulk Case Update

Updates many Salesforce Case records at once, based on a SOQL query. Use it to apply the same field changes across every case that matches a query.

What it does

  • Runs the SOQL query to find the cases to update.
  • Applies the given field values to every matching case in a single bulk operation.
  • Returns overall success, a list of any errors, and the full result set.

Inputs

NameTypeDescription
Salesforce Access TokenCredentialsSalesforce Access Token from the Login Action
Salesforce Instance URLCredentialsSalesforce Instance URL from the Login Action
SOQL QueryStringThe SOQL query to return tickets you want to update
Update ObjectObjectAn object of key value pairs to use in the update

Outputs

NameTypeDescription
SuccessBooleanReturns true if all updates were successful
ErrorsListA list of objects detailing any errors
All ResultsListThe full response from the update

Notes

  • Requires a Salesforce access token and instance URL from the Salesforce Login action.
  • It updates Case records only, so the query should return the cases you intend to change.

API reference


Did this page help you?