Loading...

Building on our previous exploration of how to integrate Salesforce to Google Sheets using apps in a comprehensive blog, we are back again to guide you through the intricacies of integrating Salesforce to Google Sheets utilizing Google APIs.

Emphasizing the utilization of APIs for real-time data synchronization, this integration promises to revolutionize the way you handle and collaborate on data. It streamlines data management and enhances collaboration by ensuring that your Salesforce data is seamlessly accessible and synchronized with your Google Sheets.

So, let’s begin and demonstrate how to update contact records in Google Sheets, created in Salesforce through APIs.

Set up a Google Cloud Platform Project to Integrate Salesforce to Google Sheets using API

  • Head to the Google Cloud Console.
  • You can either select a new project or choose an existing one.
  • Next is enabling the Google Sheets API for your project.
  • Create credentials for a service account, and download the JSON key file.

select a new project

>> Provide the desired Name for Project here, Here I’ve given the name Google Sheet Test.

Provide the desired Name for Project

>> In the search box, write Google Sheet and select the Google Sheets API option.

>> Click on Enable API

>> Click on the left corner, then click on API & Services, once the box will get opened click on Credentials and then click on Create Credentials.

>> As the Create Credentials box opens, Click on OAuth Client ID.

>> To create an OAuth client ID, we need to Configure Consent Screen.

Configure Consent Screen

>> In Authentication Type, Select Web Application.

Select Web Application

>> Provide the ‘Name’ for your OAuth Client ID and Create it.

Provide the ‘Name’

>> Once the OAuth page opens, Copy the Client Id and Client Secret.

Copy the Client Id

> In Salesforce Org

Setup >> Quick Find Box >> Enter Auth >> Click on Auth Provider >> Click on New.

Select Google

>> In Provider Type, Select Google.

Select Google

>> Following Box will be opened.

Following Box will be opened

>> In consumer key, Mention the copied OAuth client Id and In consumer Secret, Mention the copied client secret.

Authorize Endpoint URL

https://accounts.google.com/o/oauth2/auth?access_type=offline&approval_prompt=force

Token Endpoint URL

https://accounts.google.com/o/oauth2/accessToken

Default Scopes

https://www.googleapis.com/auth/spreadsheets

In Authorize Endpoint URL, Token EndPoint URL and Default Scopes mentioned above Url. Once you will save the auth Provider, the callback Url will be generated so, copy the callback url.

Mention the copied client secret

>> Mention the callback Url in OAuth Client Id.

Mention the callback Url

>> In the Quick Find Box, Enter Named Credentials in the left corner. Click on the drop-down box and click on New Legacy.

Enter Named Credentials

> For creating new Named Credentials provide the desired Label, In the URL, mention this URL –
https://sheets.googleapis.com

In Identity type, select Named Principle, and In Authentication Protocol, Select OAuth 2.0.
For Authentication Provider, Click on the glass icon, Select the Authenticator Provider which you have created in Auth and Click on ‘Save’ button.

Click on the glass icon

>> As you click on ‘Save’ button, It will redirect you to verify your email.

verify your email

>> Click on Continue.

Click on Continue

>> Again, Click on Continue.

Again, Click on Continue.

>> Once you process all the steps, it will redirect you back to your Salesforce org.

> Once we have completed all the above mentioned steps for authentication, we have to create a custom button and we have to set it on the contact record page as we will click on the button. It will sync your contact to google sheet and it will be appended on the sheet.

> Controller Class – GoogleSheetApi.cls

We have set the EndPoint –
req.setEndpoint(‘callout:GoogleSheetApi/v4/spreadsheets/1SyhGgtSdU9f8zeNKWCGBZ3om3D8pOo2uoKhOELASLvo/values/Sheet1:append?valueInputOption=RAW’);We have mentioned the sheet Id in the endpoint.

create a custom button

>> HTML Class – googleSheetTest.html’
>>
Here, we have created a custom button on the page and added this component on the standard contact page, as you will click on the button, the contact will be synced with google sheet.

>> JS Class – googleSheetTest.js
>> In the Js file, we have imported controller class and method and also we have imported showToastEvent. Here we have used api,wire and track decorator. Api decorator will provide current page record Id and appendRowbyID is variable name for controller class.

>> We have added the button on the Standard Contact Page.

add the button

>> Once you click on the button, the contact will be synced with the sheet.

contact will be synced with the sheet

>> The Contact will be available on the sheet.



Salesforce Experts

Conclusion

So, here it is! This is how we can seamlessly integrate Salesforce to Google Sheets and update contact records in it.

So what are you waiting for? Go ahead and try out the solution. Feel free to share your suggestions or reach out to us for any Salesforce development Services.

Related Articles

Sticky notes aren’t just for your desk anymore! In this tutorial, we’ll create a Lightning Web Component (LWC) in Salesforce that allows you to pin notes on your app page or record page. With a clean, interactive UI, these digital sticky notes ensure you never forget important tasks or details. What Will You Learn? By […]

Read More
How to Create Dynamic, Animated Charts in Salesforce LWC using Chart.js

Bring Salesforce data to life with dynamic charts inside Lightning pages! While Salesforce dashboards are powerful, sometimes business users want visual insights without leaving their current page. That’s where Chart.js with Lightning Web Components (LWC) becomes a game-changer. In this step-by-step guide, you’ll learn how to: Upload Chart.js as a static resource in Salesforce. Build […]

Read More
How to Encrypt and Decrypt Data in Salesforce Using Apex Crypto Class

Data security is more important than ever. Whether you’re storing customer information, sensitive business data, or private communication, ensuring that your data stays safe is critical. Salesforce provides built-in tools to help with this, and one of the most powerful yet easy-to-use approaches is encryption and decryption using the Apex Crypto class. In this blog, […]

Read More
Benefits & Step-by-Step Setup Guide for Salesforce Code Analyzer

When building on the Salesforce platform, code quality and security are non-negotiable, especially before submitting your app for a Salesforce Security Review. Catching bugs and vulnerabilities early not only saves time but also ensures compliance with Salesforce’s best practices. That’s where the Salesforce Code Analyzer comes in. This open-source tool scans your Apex classes, triggers, […]

Read More
A Step-by-Step Guide to Integrate Zoho CRM with Salesforce (Without Coding)

Managing data across multiple CRMs can be a real challenge for businesses that want a single source of truth. If your teams use Zoho CRM but want to move or sync all records seamlessly into Salesforce, you don’t need to write a single line of code. Thanks to MultiSync Made Easy, the integration process is […]

Read More
How to Integrate Salesforce with Copilot

Integrating Salesforce with Copilot is becoming an essential step for organizations aiming to streamline workflows, automate client data management, and unlock the power of AI-driven CRM. By connecting these two platforms, businesses can centralize customer information, reduce manual tasks, and accelerate growth. This guide walks you through the Salesforce–Copilot integration process with clear steps, Apex […]

Read More