SlideShare a Scribd company logo
INTEGRATION PEER-LED STUDY GROUP
MEETING 4: MAY 7, 2018
FACILITATOR: NIKI VANKERK
AGENDA
• Quick round of intros – name/where you are/planned exam date
• Cross Org Connections (Niki)
• Security/Oauth Part 2 (Edith)
• JSON Basics (Susannah)
• Connected Apps & Backup/Restore (Nadina)
• Choose next topics
INTROS
CROSS ORG CONNECTIONS- Niki
• Single vs Multiple Orgs: Making the decision
• Technology choices
• Salesforce 2 Salesforce
• Salesforce Connect with cross org adapter
• Middleware/ETL tool
• Wave/Analytics for reporting
• Custom integration via APEX
The decision
• consider how integrated and
standardized the business process
are
• Unification: single org
• Diversification: multiple orgs
• Replication: consider multiple but
share config with managed packages
• Coordination: consider single with
responsive biz unit config/governance
reference: https://developer.salesforce.com/blogs/developer-relations/2014/10/enterprise-architecture-multi-org-strategy.html
Other factors
• Single Reporting org: consolidate data here for reports
• Other considerations:
• data privacy issues
• org limits (apex) and org wide sharing complexity
• Complex data processes that vary between business units
• local administration requirements
Salesforce to Salesforce
• Free technology, Classic interface only for managing data sync
• Once enabled, can’t be disabled; creates Connections and External sharing
tab/lists
• General flow
• Invite a contact to connect, sends them email template where they can accept
• Publish objects and fields in main org; receiving org subscribes to same
objects/fields
• Individual records are then shared to individual connections, manually or via apex
• Receiving org accepts the records being shared, manually or auto subscribe
• Can be bidirectional or one way push
More Details (S2S)
• Data is stored into the receiving org so consider data storage issues
• No chatter, only main standard objects available
(account/contact/case/lead/opp with products, Task) and custom objects
• Need workflow/apex to ‘translate’ picklists or values
• Can be difficult to support parent/child sync
• Organization Sync for downtime
• limit to 2 orgs, have to purchase second org fully
• can redirect users to second org during maintenance window, either R/O or edit
• copy meta data over to second org but adjust to avoid trigger loops
Salesforce Connect
• Integrates data stored outside of your SF org, not copying data into org but use
External Objects to access data real time.
• Avoids data from getting stale over time, taking up data storage
• Product add on cost may be prohibitive
• Cross object adapter for multi orgs, consumes API calls
• for frequent access to large amounts of data, ETL is best option
• Suitable for pulling in net new objects from different orgs
• each connection feeds into a separate External Object
Salesforce Connect
• Adapter types:
• OData 2.0 or 4.0: use for any 2.0/4.0 producer on the internet, REST based
protocol, has OData callout limits (ie 10K per hour, 1000 row result set)
• Custom APEX connector framework: uses callouts/API
• Cross org adapter: uses Lightning REST API for data access, API limits
• calls for viewing external object record, list views, parent/child with external references,
reports
• X-Org limitations:
• activities, notes, record types, record level sharing not available
• formula/roll ups can’t reference external objects, no rich text
• picklists: make local/non restricted on subscriber org
• currency: match between orgs
Comparison
Reference: https://www.slideshare.net/developerforce/blurring-the-boundaries-between-salesforce-orgs
3rd party tools
Pros:
• Built/supported by external company, security review if on AppExchange
• Range of complexity from one object to data transformation/warehouse
capability
• prebuilt connectors like Sharepoint etc
Cons:
• Usually pay per connection, could be costly
Sample vendor with array of options: https://skyvia.com/connectors/salesforce
Other Integration Options
• Wave/Analytics: bring various org data in as datasets for single reporting view
• Cost for Wave
• Article with details: https://www.linkedin.com/pulse/reporting-analytics-salesforce-
multi-org-scenario-sumit-jain/
• Custom integration code:
• relies on developers, efficient use of API calls
• maintenance issues
• requires tight control/understanding of multiple org processes
SECURITY PART 2 - Edith
Last session:
Inbound integration security
• Client integrations are treated as users
OAuth 2.0
Overview
Network authentication
Session security
Data security
Application-level security
Transport layer security
Outbound integration security
http://lms.cfs-
api.com/v1/12/lms.aspx?hash=WUlRa1pjd0RRUDZIbE5XYXFsalBoSXluZDdqT0dkZkNKNmt6blpYOTU4TjBWU1BKWmp0SXpOZzVzSzNMRVZ6dkt0dEhRcFh5Uk
VGU3VSSVFCSFk2dm5FM011NHZDTS9SWjhNVDMva25SelkvZnkxS0t4MGM5TCtTZzdEbFNMSUxZQWVodVViamdjWDNNaWhaUlZxL1d3PT0=
Network authentication
Network authentication restricted
by:
• Profile: Login hours and IP
ranges
• Organisation: IP address
restrictions
Authentication flow
Session security
Org-wide level
Data security
Types:
• Object-level security
• Field-level security (remember
encrypted fields)
• Record-level security
• View all, modify all
• Sharing rules
• Manual sharing
• Role hierarchy
Application-level security
Restrict access to client apps, such as Data Loader or the Salesforce app
• “API client whitelisting feature”
• Restrict access to all connected apps until admin explicitly approve each app
• “Use any client API permission”: User can access any app
Transport layer security
TLS protocol
• Provides secure transport over HTTP or HTPS
• Network segments are encrypted end-to-end
• Uses SSL certificates
• Allows detection of message tampering
Outbound integration security
Two-way TLS
• 2 certificates, client and server
• Certificate authority signs the certificates
Outbound port restrictions
Remote site settings
• Register before callouts are made
JSON Basics - Susannah
• JSON (JavaScript Object Notation) is a lightweight text-based format used to
transport data between a web application and a server
• Supports UTF-8 and ISO8601 for data interchange
• Uses string-value pairs for representing data
• Used by the REST API, Chatter REST API, Streaming API and Bulk API
JSON String-Value/Name-Value Pairs
• JSON uses an unordered
collection of string-value pairs to
represent data.
• The string is the field name the
value should be associated with
• The value can be any string,
boolean, number, object or array
• Each name is followed by a
colon
• Each pair is separated by a
comma
JSON is Built on Two Structures: Object and Array
Example:
JSON Response to a REST Api
Query
JSON Support
You can work with JSON in a variety of languages (Java, C#, etc). Luckily, Apex
provides a set of classes that expose methods for JSON serialization and
deserialization. For complete documentation visit the developer docs.
Example: Using the method
JSON.deserializeStrict()
Method:
JSON.deserializeStrict(jsonString,a
pexType)
This method deserializes a JSON
string into an Apex object of the
specified type.
In this example, the JSON string is
deserialized into the Apex object
“Car”, represented by the Car class
CONNECTED APPS & BACKUP/RESTORE -
Nadina
CONNECTED APPS
• A connected app integrates an application with Salesforce using APIs.
Connected apps are designed to be run independently of the user interface.
Connected apps use standard SAML and OAuth protocols to authenticate,
provide single sign-on, and provide tokens for use with Salesforce APIs. In
addition to standard OAuth capabilities, connected apps allow Salesforce
admins to set various security policies and have explicit control over who can
use the corresponding apps.
CONNECTED APPS
• Here’s a general list of information that you provide when
you create a connected app:
• Name, description, logo, and contact information
• URL where Salesforce can locate the app for
authorization or identification
• Authorization protocol: OAuth, SAML, or bothIP
ranges from where users can log in to
• connected app (optional)
• Information about mobile policies that the connected
app can enforce (optional)
BACKUP
➔ Data backup and restore is often considered a
security topic.
➔ Why would you backup Salesforce data
(including metadata)?
◆ Recover from data corruption (unintended user error or malicious
activity)
◆ Prepare for a data migration rollback
◆ Archive data to reduce volumes
◆ Replicate data to a data warehouse/BI
◆ Take snapshots of development versions**
**Yes, don’t rely on this alone. Version Control Software should be your source
of truth (Github, Bitbucket,SVN etc)
BACKUP
Additional Caveats
● Bulk API still does not support Base64 fields.
● The below is the list of the objects that are not supported by Bulk
API. The below objects has different metadata compared to the
data objects that are supported.
○ CaseStatus
○ ContractStatus
○ KnowledgeArticle
○ KnowledgeArticleVersion
○ KnowledgeArticleVersionHistory
○ KnowledgeArticleViewStat
○ KnowledgeArticleVoteStat
○ LeadStatus
○ List item
○ OpportunityStage
○ PartnerRole
○ RecentlyViewed
○ SolutionStatus
○ TaskPriority
○ UserRecordAccess
RESTORE
● Depending on your restore use case, you’ll use one of the following types of restore processes:
○ Single restore
○ Logical partial restore
RESTORE
Resources
• Connected Apps Practice: Salesforce Mobile SDK Basics
• BEST PRACTICES: Data Backup & Recovery Best Practices
• Salesforce Backup and Restore Essentials Part 1: Backup Overview, API Options and Performance(UPDATED
February 2017)
• Salesforce Backup and Restore Essentials Part 2: Restore Strategies and Processes(UPDATED February 2017)
• Choosing Integration Approach
BRAINSTORM
TOPICS
MORE RESOURCES
• Integration Exam Resource Guide
• Integration Patterns Guide
• Trailmix for Integration Exam here
THANK YOU FOR COMING!
• Join our Trailblazer Community group – don’t forget to fill out your personal profile!
• Post your exam successes into the group
• If you tweet, use #LadiesBeArchitects
• Get Involved –
• Run a study group for us
• Speak at one of our Inspire meet-ups
• Blog / talk about us

More Related Content

What's hot

Intro to salesforce platform for developers
Intro to salesforce platform for developersIntro to salesforce platform for developers
Intro to salesforce platform for developers
Roy Gilad
 
Data Management and Migration in Salesforce
Data Management and Migration in SalesforceData Management and Migration in Salesforce
Data Management and Migration in Salesforce
Sunil kumar
 
Importing data to salesforce
Importing data to salesforceImporting data to salesforce
Importing data to salesforce
NetStronghold
 
Access External Data in Real-time with Lightning Connect
Access External Data in Real-time with Lightning ConnectAccess External Data in Real-time with Lightning Connect
Access External Data in Real-time with Lightning Connect
Salesforce Developers
 
TrueSight Enterprise Edition
TrueSight Enterprise EditionTrueSight Enterprise Edition
TrueSight Enterprise Editionmichaelkmcdowell
 
Sp24 design a share point 2013 architecture – the basics
Sp24   design a share point 2013 architecture – the basicsSp24   design a share point 2013 architecture – the basics
Sp24 design a share point 2013 architecture – the basics
Alexander Meijers
 
Outsourcing your share point hosting the cloud's fine print magnified
Outsourcing your share point hosting   the cloud's fine print magnifiedOutsourcing your share point hosting   the cloud's fine print magnified
Outsourcing your share point hosting the cloud's fine print magnified
SherWeb
 
Blurring the Boundaries Between Salesforce Orgs
Blurring the Boundaries Between Salesforce OrgsBlurring the Boundaries Between Salesforce Orgs
Blurring the Boundaries Between Salesforce Orgs
Salesforce Developers
 
Custom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance PuzzleCustom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance Puzzle
SPC Adriatics
 
Introduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - BasicIntroduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - Basic
sanskriti agarwal
 
Tech Ed 2006 South East Asia Security And Compliance by Joel Oleson
Tech Ed 2006 South East Asia Security And Compliance by Joel OlesonTech Ed 2006 South East Asia Security And Compliance by Joel Oleson
Tech Ed 2006 South East Asia Security And Compliance by Joel Oleson
Joel Oleson
 
Salesforce1: Every Developer is a Mobile Developer
Salesforce1: Every Developer is a Mobile DeveloperSalesforce1: Every Developer is a Mobile Developer
Salesforce1: Every Developer is a Mobile Developer
Salesforce Developers
 
Fundamentals of software 2 | Test Case | Test Suite | Test Plan | Test Scenario
Fundamentals of software 2 | Test Case | Test Suite | Test Plan | Test ScenarioFundamentals of software 2 | Test Case | Test Suite | Test Plan | Test Scenario
Fundamentals of software 2 | Test Case | Test Suite | Test Plan | Test Scenario
Siddharth Sharma
 
Ipedo Company Overview
Ipedo Company OverviewIpedo Company Overview
Ipedo Company OverviewTim_Matthews
 
Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...
Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...
Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...
Dragan Panjkov
 
Migrating Fast to Solr
Migrating Fast to SolrMigrating Fast to Solr
Migrating Fast to Solr
Cominvent AS
 
(Almost) All About Apps for SharePoint 2013
(Almost) All About Apps for SharePoint 2013(Almost) All About Apps for SharePoint 2013
(Almost) All About Apps for SharePoint 2013
Dragan Panjkov
 
Beyond simple search – adding business value in the enterprise
Beyond simple search – adding business value in the enterpriseBeyond simple search – adding business value in the enterprise
Beyond simple search – adding business value in the enterprise
lucenerevolution
 
Implementing and Managing Office 365
Implementing and Managing Office 365Implementing and Managing Office 365
Implementing and Managing Office 365
Ben Stegink
 

What's hot (20)

Intro to salesforce platform for developers
Intro to salesforce platform for developersIntro to salesforce platform for developers
Intro to salesforce platform for developers
 
Data Management and Migration in Salesforce
Data Management and Migration in SalesforceData Management and Migration in Salesforce
Data Management and Migration in Salesforce
 
Importing data to salesforce
Importing data to salesforceImporting data to salesforce
Importing data to salesforce
 
APITalkMeetupSharable
APITalkMeetupSharableAPITalkMeetupSharable
APITalkMeetupSharable
 
Access External Data in Real-time with Lightning Connect
Access External Data in Real-time with Lightning ConnectAccess External Data in Real-time with Lightning Connect
Access External Data in Real-time with Lightning Connect
 
TrueSight Enterprise Edition
TrueSight Enterprise EditionTrueSight Enterprise Edition
TrueSight Enterprise Edition
 
Sp24 design a share point 2013 architecture – the basics
Sp24   design a share point 2013 architecture – the basicsSp24   design a share point 2013 architecture – the basics
Sp24 design a share point 2013 architecture – the basics
 
Outsourcing your share point hosting the cloud's fine print magnified
Outsourcing your share point hosting   the cloud's fine print magnifiedOutsourcing your share point hosting   the cloud's fine print magnified
Outsourcing your share point hosting the cloud's fine print magnified
 
Blurring the Boundaries Between Salesforce Orgs
Blurring the Boundaries Between Salesforce OrgsBlurring the Boundaries Between Salesforce Orgs
Blurring the Boundaries Between Salesforce Orgs
 
Custom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance PuzzleCustom Code-The Missing Piece of the SharePoint Governance Puzzle
Custom Code-The Missing Piece of the SharePoint Governance Puzzle
 
Introduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - BasicIntroduction to Salesforce Platform - Basic
Introduction to Salesforce Platform - Basic
 
Tech Ed 2006 South East Asia Security And Compliance by Joel Oleson
Tech Ed 2006 South East Asia Security And Compliance by Joel OlesonTech Ed 2006 South East Asia Security And Compliance by Joel Oleson
Tech Ed 2006 South East Asia Security And Compliance by Joel Oleson
 
Salesforce1: Every Developer is a Mobile Developer
Salesforce1: Every Developer is a Mobile DeveloperSalesforce1: Every Developer is a Mobile Developer
Salesforce1: Every Developer is a Mobile Developer
 
Fundamentals of software 2 | Test Case | Test Suite | Test Plan | Test Scenario
Fundamentals of software 2 | Test Case | Test Suite | Test Plan | Test ScenarioFundamentals of software 2 | Test Case | Test Suite | Test Plan | Test Scenario
Fundamentals of software 2 | Test Case | Test Suite | Test Plan | Test Scenario
 
Ipedo Company Overview
Ipedo Company OverviewIpedo Company Overview
Ipedo Company Overview
 
Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...
Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...
Kako pravilno konfigurisati SharePoint on-premises za SharePoint Add-ins (Sha...
 
Migrating Fast to Solr
Migrating Fast to SolrMigrating Fast to Solr
Migrating Fast to Solr
 
(Almost) All About Apps for SharePoint 2013
(Almost) All About Apps for SharePoint 2013(Almost) All About Apps for SharePoint 2013
(Almost) All About Apps for SharePoint 2013
 
Beyond simple search – adding business value in the enterprise
Beyond simple search – adding business value in the enterpriseBeyond simple search – adding business value in the enterprise
Beyond simple search – adding business value in the enterprise
 
Implementing and Managing Office 365
Implementing and Managing Office 365Implementing and Managing Office 365
Implementing and Managing Office 365
 

Similar to Ladies Be Architects - Integration - Multi-Org, Security, JSON, Backup & Restore

Enterprise guide to building a Data Mesh
Enterprise guide to building a Data MeshEnterprise guide to building a Data Mesh
Enterprise guide to building a Data Mesh
Sion Smith
 
Business Applications Integration In The Cloud
Business Applications Integration In The CloudBusiness Applications Integration In The Cloud
Business Applications Integration In The Cloud
Anna Brzezińska
 
The DNA of a great API
The DNA of a great APIThe DNA of a great API
The DNA of a great API
Ciprian Sorlea CSM-CSPO
 
Salesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We DoSalesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Developers
 
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMeshThe Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
IanFurlong4
 
Salesforce connect
Salesforce connectSalesforce connect
Salesforce connect
Lalit Chandnani
 
Sword Cetis 2007 06 29
Sword Cetis 2007 06 29Sword Cetis 2007 06 29
Sword Cetis 2007 06 29
Julie Allinson
 
Sword Cetis 2007 06 29
Sword Cetis 2007 06 29Sword Cetis 2007 06 29
Sword Cetis 2007 06 29
Sheila MacNeill
 
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding OverviewSplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
Splunk
 
Achieve big data analytic platform with lambda architecture on cloud
Achieve big data analytic platform with lambda architecture on cloudAchieve big data analytic platform with lambda architecture on cloud
Achieve big data analytic platform with lambda architecture on cloud
Scott Miao
 
SplunkLive! Munich 2018: Data Onboarding Overview
SplunkLive! Munich 2018: Data Onboarding OverviewSplunkLive! Munich 2018: Data Onboarding Overview
SplunkLive! Munich 2018: Data Onboarding Overview
Splunk
 
Peteris Arajs - Where is my data
Peteris Arajs - Where is my dataPeteris Arajs - Where is my data
Peteris Arajs - Where is my data
Andrejs Vorobjovs
 
Advanced Web Development
Advanced Web DevelopmentAdvanced Web Development
Advanced Web Development
Robert J. Stein
 
Gimel and PayPal Notebooks @ TDWI Leadership Summit Orlando
Gimel and PayPal Notebooks @ TDWI Leadership Summit OrlandoGimel and PayPal Notebooks @ TDWI Leadership Summit Orlando
Gimel and PayPal Notebooks @ TDWI Leadership Summit Orlando
Romit Mehta
 
Next-Generation Completeness and Consistency Management in the Digital Threa...
Next-Generation Completeness and Consistency Management in the Digital Threa...Next-Generation Completeness and Consistency Management in the Digital Threa...
Next-Generation Completeness and Consistency Management in the Digital Threa...
Ákos Horváth
 
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Amazon Web Services
 
(ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service (ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service
BIOVIA
 
Scalable Deployment Patterns in WSO2 API Manager
Scalable Deployment Patterns in WSO2 API Manager Scalable Deployment Patterns in WSO2 API Manager
Scalable Deployment Patterns in WSO2 API Manager
WSO2
 
Hypermedia for Machine APIs
Hypermedia for Machine APIsHypermedia for Machine APIs
Hypermedia for Machine APIs
Michael Koster
 
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
Amazon Web Services
 

Similar to Ladies Be Architects - Integration - Multi-Org, Security, JSON, Backup & Restore (20)

Enterprise guide to building a Data Mesh
Enterprise guide to building a Data MeshEnterprise guide to building a Data Mesh
Enterprise guide to building a Data Mesh
 
Business Applications Integration In The Cloud
Business Applications Integration In The CloudBusiness Applications Integration In The Cloud
Business Applications Integration In The Cloud
 
The DNA of a great API
The DNA of a great APIThe DNA of a great API
The DNA of a great API
 
Salesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We DoSalesforce Multitenant Architecture: How We Do the Magic We Do
Salesforce Multitenant Architecture: How We Do the Magic We Do
 
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMeshThe Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
The Enterprise Guide to Building a Data Mesh - Introducing SpecMesh
 
Salesforce connect
Salesforce connectSalesforce connect
Salesforce connect
 
Sword Cetis 2007 06 29
Sword Cetis 2007 06 29Sword Cetis 2007 06 29
Sword Cetis 2007 06 29
 
Sword Cetis 2007 06 29
Sword Cetis 2007 06 29Sword Cetis 2007 06 29
Sword Cetis 2007 06 29
 
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding OverviewSplunkLive! Frankfurt 2018 - Data Onboarding Overview
SplunkLive! Frankfurt 2018 - Data Onboarding Overview
 
Achieve big data analytic platform with lambda architecture on cloud
Achieve big data analytic platform with lambda architecture on cloudAchieve big data analytic platform with lambda architecture on cloud
Achieve big data analytic platform with lambda architecture on cloud
 
SplunkLive! Munich 2018: Data Onboarding Overview
SplunkLive! Munich 2018: Data Onboarding OverviewSplunkLive! Munich 2018: Data Onboarding Overview
SplunkLive! Munich 2018: Data Onboarding Overview
 
Peteris Arajs - Where is my data
Peteris Arajs - Where is my dataPeteris Arajs - Where is my data
Peteris Arajs - Where is my data
 
Advanced Web Development
Advanced Web DevelopmentAdvanced Web Development
Advanced Web Development
 
Gimel and PayPal Notebooks @ TDWI Leadership Summit Orlando
Gimel and PayPal Notebooks @ TDWI Leadership Summit OrlandoGimel and PayPal Notebooks @ TDWI Leadership Summit Orlando
Gimel and PayPal Notebooks @ TDWI Leadership Summit Orlando
 
Next-Generation Completeness and Consistency Management in the Digital Threa...
Next-Generation Completeness and Consistency Management in the Digital Threa...Next-Generation Completeness and Consistency Management in the Digital Threa...
Next-Generation Completeness and Consistency Management in the Digital Threa...
 
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
Migrate from Oracle to Aurora PostgreSQL: Best Practices, Design Patterns, & ...
 
(ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service (ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service
 
Scalable Deployment Patterns in WSO2 API Manager
Scalable Deployment Patterns in WSO2 API Manager Scalable Deployment Patterns in WSO2 API Manager
Scalable Deployment Patterns in WSO2 API Manager
 
Hypermedia for Machine APIs
Hypermedia for Machine APIsHypermedia for Machine APIs
Hypermedia for Machine APIs
 
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
(ENT211) Migrating the US Government to the Cloud | AWS re:Invent 2014
 

More from gemziebeth

Salesforce Sharing Architecture
Salesforce Sharing ArchitectureSalesforce Sharing Architecture
Salesforce Sharing Architecture
gemziebeth
 
Ladies Be Architects - Apex Basics
Ladies Be Architects - Apex BasicsLadies Be Architects - Apex Basics
Ladies Be Architects - Apex Basics
gemziebeth
 
Equality - Salesforce Certified Technical Architect
Equality - Salesforce Certified Technical ArchitectEquality - Salesforce Certified Technical Architect
Equality - Salesforce Certified Technical Architect
gemziebeth
 
Ladies Be Architects: Integration Study Group: Kick Off Slides
Ladies Be Architects: Integration Study Group: Kick Off SlidesLadies Be Architects: Integration Study Group: Kick Off Slides
Ladies Be Architects: Integration Study Group: Kick Off Slides
gemziebeth
 
Certifiably Insane: The Inspiration Behind 14 Certs in 5 months
Certifiably Insane: The Inspiration Behind 14 Certs in 5 monthsCertifiably Insane: The Inspiration Behind 14 Certs in 5 months
Certifiably Insane: The Inspiration Behind 14 Certs in 5 months
gemziebeth
 
Ladies Be Architects - Study Group II: Data Governance
Ladies Be Architects - Study Group II: Data GovernanceLadies Be Architects - Study Group II: Data Governance
Ladies Be Architects - Study Group II: Data Governance
gemziebeth
 
Ladies Be Architects - Study Group I: Territory Management
Ladies Be Architects - Study Group I: Territory ManagementLadies Be Architects - Study Group I: Territory Management
Ladies Be Architects - Study Group I: Territory Management
gemziebeth
 

More from gemziebeth (7)

Salesforce Sharing Architecture
Salesforce Sharing ArchitectureSalesforce Sharing Architecture
Salesforce Sharing Architecture
 
Ladies Be Architects - Apex Basics
Ladies Be Architects - Apex BasicsLadies Be Architects - Apex Basics
Ladies Be Architects - Apex Basics
 
Equality - Salesforce Certified Technical Architect
Equality - Salesforce Certified Technical ArchitectEquality - Salesforce Certified Technical Architect
Equality - Salesforce Certified Technical Architect
 
Ladies Be Architects: Integration Study Group: Kick Off Slides
Ladies Be Architects: Integration Study Group: Kick Off SlidesLadies Be Architects: Integration Study Group: Kick Off Slides
Ladies Be Architects: Integration Study Group: Kick Off Slides
 
Certifiably Insane: The Inspiration Behind 14 Certs in 5 months
Certifiably Insane: The Inspiration Behind 14 Certs in 5 monthsCertifiably Insane: The Inspiration Behind 14 Certs in 5 months
Certifiably Insane: The Inspiration Behind 14 Certs in 5 months
 
Ladies Be Architects - Study Group II: Data Governance
Ladies Be Architects - Study Group II: Data GovernanceLadies Be Architects - Study Group II: Data Governance
Ladies Be Architects - Study Group II: Data Governance
 
Ladies Be Architects - Study Group I: Territory Management
Ladies Be Architects - Study Group I: Territory ManagementLadies Be Architects - Study Group I: Territory Management
Ladies Be Architects - Study Group I: Territory Management
 

Recently uploaded

The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 

Recently uploaded (20)

The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 

Ladies Be Architects - Integration - Multi-Org, Security, JSON, Backup & Restore

  • 1. INTEGRATION PEER-LED STUDY GROUP MEETING 4: MAY 7, 2018 FACILITATOR: NIKI VANKERK
  • 2. AGENDA • Quick round of intros – name/where you are/planned exam date • Cross Org Connections (Niki) • Security/Oauth Part 2 (Edith) • JSON Basics (Susannah) • Connected Apps & Backup/Restore (Nadina) • Choose next topics
  • 4. CROSS ORG CONNECTIONS- Niki • Single vs Multiple Orgs: Making the decision • Technology choices • Salesforce 2 Salesforce • Salesforce Connect with cross org adapter • Middleware/ETL tool • Wave/Analytics for reporting • Custom integration via APEX
  • 5. The decision • consider how integrated and standardized the business process are • Unification: single org • Diversification: multiple orgs • Replication: consider multiple but share config with managed packages • Coordination: consider single with responsive biz unit config/governance reference: https://developer.salesforce.com/blogs/developer-relations/2014/10/enterprise-architecture-multi-org-strategy.html
  • 6. Other factors • Single Reporting org: consolidate data here for reports • Other considerations: • data privacy issues • org limits (apex) and org wide sharing complexity • Complex data processes that vary between business units • local administration requirements
  • 7. Salesforce to Salesforce • Free technology, Classic interface only for managing data sync • Once enabled, can’t be disabled; creates Connections and External sharing tab/lists • General flow • Invite a contact to connect, sends them email template where they can accept • Publish objects and fields in main org; receiving org subscribes to same objects/fields • Individual records are then shared to individual connections, manually or via apex • Receiving org accepts the records being shared, manually or auto subscribe • Can be bidirectional or one way push
  • 8. More Details (S2S) • Data is stored into the receiving org so consider data storage issues • No chatter, only main standard objects available (account/contact/case/lead/opp with products, Task) and custom objects • Need workflow/apex to ‘translate’ picklists or values • Can be difficult to support parent/child sync • Organization Sync for downtime • limit to 2 orgs, have to purchase second org fully • can redirect users to second org during maintenance window, either R/O or edit • copy meta data over to second org but adjust to avoid trigger loops
  • 9. Salesforce Connect • Integrates data stored outside of your SF org, not copying data into org but use External Objects to access data real time. • Avoids data from getting stale over time, taking up data storage • Product add on cost may be prohibitive • Cross object adapter for multi orgs, consumes API calls • for frequent access to large amounts of data, ETL is best option • Suitable for pulling in net new objects from different orgs • each connection feeds into a separate External Object
  • 10. Salesforce Connect • Adapter types: • OData 2.0 or 4.0: use for any 2.0/4.0 producer on the internet, REST based protocol, has OData callout limits (ie 10K per hour, 1000 row result set) • Custom APEX connector framework: uses callouts/API • Cross org adapter: uses Lightning REST API for data access, API limits • calls for viewing external object record, list views, parent/child with external references, reports • X-Org limitations: • activities, notes, record types, record level sharing not available • formula/roll ups can’t reference external objects, no rich text • picklists: make local/non restricted on subscriber org • currency: match between orgs
  • 12. 3rd party tools Pros: • Built/supported by external company, security review if on AppExchange • Range of complexity from one object to data transformation/warehouse capability • prebuilt connectors like Sharepoint etc Cons: • Usually pay per connection, could be costly Sample vendor with array of options: https://skyvia.com/connectors/salesforce
  • 13. Other Integration Options • Wave/Analytics: bring various org data in as datasets for single reporting view • Cost for Wave • Article with details: https://www.linkedin.com/pulse/reporting-analytics-salesforce- multi-org-scenario-sumit-jain/ • Custom integration code: • relies on developers, efficient use of API calls • maintenance issues • requires tight control/understanding of multiple org processes
  • 14. SECURITY PART 2 - Edith Last session: Inbound integration security • Client integrations are treated as users OAuth 2.0
  • 15. Overview Network authentication Session security Data security Application-level security Transport layer security Outbound integration security http://lms.cfs- api.com/v1/12/lms.aspx?hash=WUlRa1pjd0RRUDZIbE5XYXFsalBoSXluZDdqT0dkZkNKNmt6blpYOTU4TjBWU1BKWmp0SXpOZzVzSzNMRVZ6dkt0dEhRcFh5Uk VGU3VSSVFCSFk2dm5FM011NHZDTS9SWjhNVDMva25SelkvZnkxS0t4MGM5TCtTZzdEbFNMSUxZQWVodVViamdjWDNNaWhaUlZxL1d3PT0=
  • 16. Network authentication Network authentication restricted by: • Profile: Login hours and IP ranges • Organisation: IP address restrictions
  • 19. Data security Types: • Object-level security • Field-level security (remember encrypted fields) • Record-level security • View all, modify all • Sharing rules • Manual sharing • Role hierarchy
  • 20. Application-level security Restrict access to client apps, such as Data Loader or the Salesforce app • “API client whitelisting feature” • Restrict access to all connected apps until admin explicitly approve each app • “Use any client API permission”: User can access any app
  • 21. Transport layer security TLS protocol • Provides secure transport over HTTP or HTPS • Network segments are encrypted end-to-end • Uses SSL certificates • Allows detection of message tampering
  • 22. Outbound integration security Two-way TLS • 2 certificates, client and server • Certificate authority signs the certificates Outbound port restrictions Remote site settings • Register before callouts are made
  • 23. JSON Basics - Susannah • JSON (JavaScript Object Notation) is a lightweight text-based format used to transport data between a web application and a server • Supports UTF-8 and ISO8601 for data interchange • Uses string-value pairs for representing data • Used by the REST API, Chatter REST API, Streaming API and Bulk API
  • 24. JSON String-Value/Name-Value Pairs • JSON uses an unordered collection of string-value pairs to represent data. • The string is the field name the value should be associated with • The value can be any string, boolean, number, object or array • Each name is followed by a colon • Each pair is separated by a comma
  • 25. JSON is Built on Two Structures: Object and Array
  • 26. Example: JSON Response to a REST Api Query
  • 27. JSON Support You can work with JSON in a variety of languages (Java, C#, etc). Luckily, Apex provides a set of classes that expose methods for JSON serialization and deserialization. For complete documentation visit the developer docs.
  • 28. Example: Using the method JSON.deserializeStrict() Method: JSON.deserializeStrict(jsonString,a pexType) This method deserializes a JSON string into an Apex object of the specified type. In this example, the JSON string is deserialized into the Apex object “Car”, represented by the Car class
  • 29. CONNECTED APPS & BACKUP/RESTORE - Nadina
  • 30. CONNECTED APPS • A connected app integrates an application with Salesforce using APIs. Connected apps are designed to be run independently of the user interface. Connected apps use standard SAML and OAuth protocols to authenticate, provide single sign-on, and provide tokens for use with Salesforce APIs. In addition to standard OAuth capabilities, connected apps allow Salesforce admins to set various security policies and have explicit control over who can use the corresponding apps.
  • 31. CONNECTED APPS • Here’s a general list of information that you provide when you create a connected app: • Name, description, logo, and contact information • URL where Salesforce can locate the app for authorization or identification • Authorization protocol: OAuth, SAML, or bothIP ranges from where users can log in to • connected app (optional) • Information about mobile policies that the connected app can enforce (optional)
  • 32. BACKUP ➔ Data backup and restore is often considered a security topic. ➔ Why would you backup Salesforce data (including metadata)? ◆ Recover from data corruption (unintended user error or malicious activity) ◆ Prepare for a data migration rollback ◆ Archive data to reduce volumes ◆ Replicate data to a data warehouse/BI ◆ Take snapshots of development versions** **Yes, don’t rely on this alone. Version Control Software should be your source of truth (Github, Bitbucket,SVN etc)
  • 33. BACKUP Additional Caveats ● Bulk API still does not support Base64 fields. ● The below is the list of the objects that are not supported by Bulk API. The below objects has different metadata compared to the data objects that are supported. ○ CaseStatus ○ ContractStatus ○ KnowledgeArticle ○ KnowledgeArticleVersion ○ KnowledgeArticleVersionHistory ○ KnowledgeArticleViewStat ○ KnowledgeArticleVoteStat ○ LeadStatus ○ List item ○ OpportunityStage ○ PartnerRole ○ RecentlyViewed ○ SolutionStatus ○ TaskPriority ○ UserRecordAccess
  • 34. RESTORE ● Depending on your restore use case, you’ll use one of the following types of restore processes: ○ Single restore ○ Logical partial restore
  • 36. Resources • Connected Apps Practice: Salesforce Mobile SDK Basics • BEST PRACTICES: Data Backup & Recovery Best Practices • Salesforce Backup and Restore Essentials Part 1: Backup Overview, API Options and Performance(UPDATED February 2017) • Salesforce Backup and Restore Essentials Part 2: Restore Strategies and Processes(UPDATED February 2017) • Choosing Integration Approach
  • 38. MORE RESOURCES • Integration Exam Resource Guide • Integration Patterns Guide • Trailmix for Integration Exam here
  • 39. THANK YOU FOR COMING! • Join our Trailblazer Community group – don’t forget to fill out your personal profile! • Post your exam successes into the group • If you tweet, use #LadiesBeArchitects • Get Involved – • Run a study group for us • Speak at one of our Inspire meet-ups • Blog / talk about us