Skip to content

Instantly share code, notes, and snippets.

@eeshansim
eeshansim / roadmap_to_wucc.md
Last active July 19, 2018 07:21
Freakshow training plan 2018

Training plan 2018 (April - July)

Coaches review 31st May

Discussion points

  • Post FS Invite and MN review
  • Training plan from now till Ohio

Performance

@eeshansim
eeshansim / Workato_SFDC_Process_Builder.md
Last active July 19, 2018 07:20
Workato-Salesforce Integration. Learn how to connect a Process Builder in Salesforce.com to Workato Callable Recipes

Process Builder to Workato Recipes

Process Builder allows you to easily automate business processes without any code, using a graphical interface to build processes. However, it is limited to actions within Salesforce. To communicate with external web services, you will have to use more advanced features like an Apex code. This document shows you how to create an Apex class to communicate with a Workato Callable Recipe.

Apex code

We will not go into too much details about Apex. However, here are a few things you need to be aware of.

  • Uses HttpRequest class to communicate with Workato Callable recipes exposed as REST endpoints.
  • To expose an Apex class method to Process Builder, you must annotate each one with @InvocableMethod.
@eeshansim
eeshansim / neto.rb
Last active July 28, 2016 00:56
Neto connector code for Workato SDK
{
title: 'Neto',
connection: {
fields: [
{
name: 'domain',
control_type: 'subdomain',
url: '.neto.com.au',
optional: false
@eeshansim
eeshansim / Basic Auth image
Created May 3, 2016 00:42
Workato SDK Basic Authentication definition
connection: {
fields: [
{
name: 'api_key',
optional: false,
hint: 'Profile (top right) > Settings > Your API Keys'
}
],
authorization: {