/
Create new account in Salesforce
Create new account in Salesforce
This tutorial shows how you can add a Salesforce account and store the account ID on the ticket for update purpose.
Assumption
- That you have a connected App if not see Setup Salesforce Connected App and API user for the integration
- That you have an OAuth authentication setup Setup OAuth to Salesforce
Steps
- Create a new Action by clicking CREATE button
- Enter a name: Add Saleforce Account and click CREATE
- Select Method: POST and URL:https://yourInstance.salesforce.com/services/data/v20.0/sobjects/Account/
From the Saleforce REST API we can read that to add an account we need to call POST https://yourInstance.salesforce.com/services/data/v20.0/sobjects/Account/ - Select Authentication method: Salesforce (OAuth)
- Add request headers, key: Content-Type with value application/json
On the Body section add the following
{ "name":"{{issue.reporter.username}}" }
Here we use the mustache syntax to grab the user name of the reporter.
- Click Triggers tab
- Select ISSUE RESOLVED event, in this example we will use the Issue Resolved event to indicate that the user shall be added.
- On JQL Condition. When to execute the event(s) write Project = TESTB and to limit the trigger to the TESTB project
- Click SAVE
- (Optional) Click Test button (no issue key is needed) to and click Send, Then go Log Tab.
The result will have a response like the one below:
{ "id": "0012o00002fDp8OAAS", "success": true, "errors": [] }
Optional steps to inform the reporter about being added are to create a chained action that comments the issue.
Related content
Create an Integration
Create an Integration
More like this
User Guide
User Guide
More like this
Create Zendesk ticket from Jira Issue
Create Zendesk ticket from Jira Issue
More like this
ServiceNow - create Incident from issue
ServiceNow - create Incident from issue
More like this
Incoming Webhooks example
Incoming Webhooks example
More like this
Asset triggers to start integrations
Asset triggers to start integrations
More like this