Salesforce Object Update
Version 1
Updates a generic Salesforce object given a type, an id, and a JSON body. The first thing that the handler does is obtain an access token using the inputted info values, which is used to authenticate the rest of the calls that are made. The object type, id, and JSON body are then used to build a REST call that will be sent to Salesforce to update the object if it can be found. If an error is encountered it will be caught and re-raised, but if successful this handler will return empty results.
Finding Salesforce Objects and Fields
- The SOAP API Documentation is the best way at this point to find the Salesforce standard objects and fields
- Can be found here - https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforceapiobjects_list.htm
- Going to Setup > Customize (under Build) > {Object Name} > Fields gets you a list of Field Labels/Names (this view should also show custom fields)
- Lastly, doing an API retrieve of an already existing object of the type you want to create should show all of the fields available on the object (can use salesforceobjectretrieve to achieve this)
Where to find the Client ID, Client Secret, Security Token
- Go to Setup, which is in the dropdown menu under your name in the upper righthand corner.
- On the left sidebar, your Security Token can be found under Personal Setup > My Personal Information > Reset My Security Token.
- To get the Client ID and Client Secret, Navigate back to Setup and go to Manage Apps.
- Create a new Connected App, and fill in the basic information for the app.
- Check the Enable OAuth Settings checkbox and put https://auth for your callback url.
- Under selected OAuth scopes, add Access and manage your data (api) to your selected scopes and save.
- Your Client ID and Client Secret will be found on the app information page that you were redirected to upon saving.
Parameters
Name |
Description |
Type |
The type of object to update (ie. Account, Case, Opportunity, etc). |
Id |
The Id of the Salesforce object that will be updated. |
JSON Body |
A JSON object containing the fields and values that should be updated in the existing object. |
Sample Configuration
Name |
Description |
Type |
Opportunity |
Id |
60H00000jtPC1QAM |
JSON Body |
{"Name": "Updated Name","Close Date": "2017-09-15"} |
Results
This handler does not return any results.
Changelog
Salesforce Object Update V1 (2017-09-12)
- Initial version. See README for details.
Related Handlers
- Salesforce Account Create
- Creates a Salesforce Account record with the given parameters and returns the Account Id of the created Account record.
- Salesforce Account Retrieve
- Retrieves a Salesforce Account record with the given Account Id.
- Salesforce Case Create
- Creates a Salesforce Account Case record with the given parameters and returns the Case Id of the created record. The parameters are mapped directly to their respective fields.
- Salesforce Contact Create
- Creates a Salesforce Contact record with the given parameters and returns the Contact Id of the created Contact record.
- Salesforce Contact Retrieve
- Retrieves a Salesforce Contact record with the given Contact Id.
- Salesforce Contact Update
- Updates a Salesforce Contact record with the given parameters and returns the Contact Id of the updated Contact record.
- Salesforce Object Create
- Generically creates a Salesforce object given a type and a JSON body.
- Salesforce Object Delete
- Generically deletes a Salesforce object given a type and an id.
- Salesforce Object Retrieve
- Generically retrieves a Salesforce object given a type and an id.
- Salesforce Opportunity Create
- Creates a Salesforce Opportunity record with the given parameters and returns the id of the new Opportunity record.
- Salesforce Opportunity Retrieve
- Retrieves a Salesforce Opportunity record with the given parameters.
- Salesforce Opportunity Update
- Updates a Salesforce Opportunity record with the given parameters.
- Salesforce Task Create
- Create a new task in Salesforce.
- Salesforce User Disable
- Disables a user account in Salesforce.
- Salesforce User Retrieve
- Retrieves a Salesforce User record with the given Username.