Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

This tutorial shows how you can add a Salesforce account and store the account ID on the ticket for update purpose.

Assumption

  1. That you have a connected App if not see Setup Salesforce Connected App and API user for the integration
  2. That you have an OAuth authentication setup Setup OAuth to Salesforce

Steps

  1. Create a new Action by clicking CREATE button
  2. Enter a name: Add Saleforce Account and click CREATE
  3. 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/
  4. Select Authentication method: Salesforce (OAuth) 
  5. Add request headers, key: Content-Type with value application/json
  6. 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.

  7. Click Triggers tab
  8. Select ISSUE RESOLVED event, in this example we will use the Issue Resolved event to indicate that the user shall be added. 
  9. On JQL Condition. When to execute the event(s) write Project = TESTB and to limit the trigger to the TESTB project
  10. Click SAVE
  11. (Optional) Click Test button (no issue key is needed) to and click Send, Then go View Execution Log.

The result will have a response like the one below:

{
"name": "Warehouse",
"self": "http://localhost/rest/api/2/group?groupname=Warehouse",
"users": {
"size": 2,
"items": [],
"max-results": 50,
"start-index": 0,
"end-index": 0
},
"expand": "users"
}

Optional steps to inform the reporter about being added are to create a chained action that comments the issue.

  • No labels