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
| Name | Type | Description |
|---|---|---|
| Object Name | String | API name of the Salesforce object (e.g. Case, Contact) |
| Field Name | String | API name of the boolean field to update (e.g. IsEscalated) |
| Field Value | Boolean | The value to set (true or false) |
| Salesforce Instance URL | String | Instance URL from authentication (e.g. https://yourorg.my.salesforce.com) |
| Salesforce Access Token | String (sensitive) | Access token from authentication |
| Salesforce Record ID | String | ID of the record to update |
Outputs
| Name | Type | Description |
|---|---|---|
| Success | Boolean | Whether the field was updated |