Salesforce Update Boolean Field

Updates a single boolean (checkbox) field on any Salesforce object. Requires an active access token from a prior authentication step.

What it does

  • Sends a PATCH request to the Salesforce REST API to update the specified boolean field on a record.
  • Returns whether the update was successful.

Notes

  • Only updates one field at a time. For updating multiple fields, use a more general Salesforce Update Field action.
  • Requires a valid Salesforce access token and instance URL, typically obtained from a Salesforce Login action earlier in the flow.
  • Works on any Salesforce object type (Case, Contact, Account, custom objects, etc.).

Inputs

NameTypeDescription
Object NameStringAPI name of the Salesforce object (e.g. Case, Contact)
Field NameStringAPI name of the boolean field to update (e.g. IsEscalated)
Field ValueBooleanThe value to set (true or false)
Salesforce Instance URLStringInstance URL from authentication (e.g. https://yourorg.my.salesforce.com)
Salesforce Access TokenString (sensitive)Access token from authentication
Salesforce Record IDStringID of the record to update

Outputs

NameTypeDescription
SuccessBooleanWhether the field was updated

API reference