SlideShare a Scribd company logo
REST API
Vivek Deepak
Swayam Arora
Architecture
1. Stateless
2. Code on demand
3. Easy to use
Open End Point
Client Server
Request
Response
Example :-
1. Weather APIs of Yahoo, Google etc.
2. Site URL from SFDC
Authorized End Point
More about REST
1. GET, POST, PUT, DELETE
2. The Force.com REST API supports OAuth 2.0
3. Friendly URLs
4. Mobile Apps
5. Force.com site
6. Web to Anything form
SOAP API REST API
SOAP is a protocol REST is an architectural style
SOAP defines standards to be
strictly followed
REST does not define too much
standards like SOAP
SOAP defines its own security. RESTful web services inherits
security measures from the
underlying transport
XML data format only Plain text, HTML, XML, JSON
Less Popular More Popular
Compression
• Types of Compression
o Response Compression
o Request Compression
• Compression Headers
o Accept-Encoding header.
o Content-Encoding header.
Hands On
Creating REST Service
1. Write an Apex Class with annotation
@RestResource(urlMapping=‘</resourceURL>*')
2. Create one or more methods using below annotaions:-
1. @HttpGet
2. @HttpPost
3. @HttpDelete
4. @HttpPatch
5. @HttpPut
Exposing REST Service
1. For Secured End Points:
Use a Connected App
2. For Open End Points:
Use Salesforce Sites
Calling REST Service
1. Add Server End Point to ‘Remote Site Settings’.
2. Generate Access Token and Instance URL
1. HttpRequest req = new HttpRequest();
2. req.setMethod('GET');
3. req.setEndPoint(endUrl+'/services/oauth2/token');
4. req.setBody('grant_type=password' +
'&client_id=' + consumerKey+
'&client_secret=' + consumerSecret+
'&username=' + EncodingUtil.urlEncode(userName, 'UTF-8') +
'&password=' + EncodingUtil.urlEncode(password, 'UTF-8'));
5. Http http = new Http();
6. HttpResponse res = http.send(req);
Calling REST Service
3. Calling the REST Api using Access Token:
1. HttpRequest req = new HttpRequest();
2. req.setMethod(‘GET');
3. req.setHeader('Content-Type', 'application/json');
4. req.setEndpoint(instanceUrl+'/services/apexrest/SaveCallLog');
5. req.setHeader('Authorization', 'OAuth '+accestoken);
6. Http http = new Http();
7. HttpResponse res = http.send(req);
Thank You!
Ad

More Related Content

What's hot (12)

Aqa talk yuriy oprysk
Aqa talk yuriy opryskAqa talk yuriy oprysk
Aqa talk yuriy oprysk
Anastasiia Serafyn
 
Session 2 - Silverlight Streaming, and Windows Live Search
Session 2 - Silverlight Streaming, and Windows Live SearchSession 2 - Silverlight Streaming, and Windows Live Search
Session 2 - Silverlight Streaming, and Windows Live Search
ukdpe
 
SynapseIndia dotnet website security development
SynapseIndia  dotnet website security developmentSynapseIndia  dotnet website security development
SynapseIndia dotnet website security development
Synapseindiappsdevelopment
 
OWIN
OWINOWIN
OWIN
Saran Doraiswamy
 
McrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and AmazonMcrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and Amazon
Dan Lister
 
Connecting 1,2,3 ABUG-9
Connecting 1,2,3 ABUG-9Connecting 1,2,3 ABUG-9
Connecting 1,2,3 ABUG-9
Koen Gillard
 
Mule compatible technologies
Mule compatible technologiesMule compatible technologies
Mule compatible technologies
himajareddys
 
Identity in ASP.NET Core
Identity in ASP.NET CoreIdentity in ASP.NET Core
Identity in ASP.NET Core
ondrejbalas
 
Os Geisingerupdated
Os GeisingerupdatedOs Geisingerupdated
Os Geisingerupdated
oscon2007
 
What's New in ASP.NET Identity - TRINUG Sept 2014
What's New in ASP.NET Identity - TRINUG Sept 2014What's New in ASP.NET Identity - TRINUG Sept 2014
What's New in ASP.NET Identity - TRINUG Sept 2014
Derek Smith
 
fmcsadmin 1.0.0
fmcsadmin 1.0.0fmcsadmin 1.0.0
fmcsadmin 1.0.0
Atsushi Matsuo
 
Testing REST Web Services
Testing REST Web ServicesTesting REST Web Services
Testing REST Web Services
Jan Algermissen
 
Session 2 - Silverlight Streaming, and Windows Live Search
Session 2 - Silverlight Streaming, and Windows Live SearchSession 2 - Silverlight Streaming, and Windows Live Search
Session 2 - Silverlight Streaming, and Windows Live Search
ukdpe
 
SynapseIndia dotnet website security development
SynapseIndia  dotnet website security developmentSynapseIndia  dotnet website security development
SynapseIndia dotnet website security development
Synapseindiappsdevelopment
 
McrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and AmazonMcrUmbMeetup 22 May 14: Umbraco and Amazon
McrUmbMeetup 22 May 14: Umbraco and Amazon
Dan Lister
 
Connecting 1,2,3 ABUG-9
Connecting 1,2,3 ABUG-9Connecting 1,2,3 ABUG-9
Connecting 1,2,3 ABUG-9
Koen Gillard
 
Mule compatible technologies
Mule compatible technologiesMule compatible technologies
Mule compatible technologies
himajareddys
 
Identity in ASP.NET Core
Identity in ASP.NET CoreIdentity in ASP.NET Core
Identity in ASP.NET Core
ondrejbalas
 
Os Geisingerupdated
Os GeisingerupdatedOs Geisingerupdated
Os Geisingerupdated
oscon2007
 
What's New in ASP.NET Identity - TRINUG Sept 2014
What's New in ASP.NET Identity - TRINUG Sept 2014What's New in ASP.NET Identity - TRINUG Sept 2014
What's New in ASP.NET Identity - TRINUG Sept 2014
Derek Smith
 
Testing REST Web Services
Testing REST Web ServicesTesting REST Web Services
Testing REST Web Services
Jan Algermissen
 

Viewers also liked (17)

Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845
Ibrahim Abdel-Rahman
 
203-JMES-2230-Chakib-Published Paper-April 2016
203-JMES-2230-Chakib-Published Paper-April 2016203-JMES-2230-Chakib-Published Paper-April 2016
203-JMES-2230-Chakib-Published Paper-April 2016
Ibrahim Abdel-Rahman
 
Visagie by Benedicte
Visagie by BenedicteVisagie by Benedicte
Visagie by Benedicte
Bénedicte de Jong
 
Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]
Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]
Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]
Ibrahim Abdel-Rahman
 
CNC Diversified MV-65 PM
CNC Diversified MV-65 PMCNC Diversified MV-65 PM
CNC Diversified MV-65 PM
Steven Glover
 
DPC-2016-8-10-67-76-Published Paper-July-2016
DPC-2016-8-10-67-76-Published Paper-July-2016DPC-2016-8-10-67-76-Published Paper-July-2016
DPC-2016-8-10-67-76-Published Paper-July-2016
Ibrahim Abdel-Rahman
 
264-JMES-2335-Ellouze-Published Paper-May 2016
264-JMES-2335-Ellouze-Published Paper-May 2016264-JMES-2335-Ellouze-Published Paper-May 2016
264-JMES-2335-Ellouze-Published Paper-May 2016
Ibrahim Abdel-Rahman
 
Effect of Temperature- Stilbazole-380329-Published Paper-2012
Effect of Temperature- Stilbazole-380329-Published  Paper-2012Effect of Temperature- Stilbazole-380329-Published  Paper-2012
Effect of Temperature- Stilbazole-380329-Published Paper-2012
Ibrahim Abdel-Rahman
 
101 que aprendi en la escuela de arquitectura Camila yaryura(1)
101 que aprendi en la escuela de arquitectura Camila yaryura(1)101 que aprendi en la escuela de arquitectura Camila yaryura(1)
101 que aprendi en la escuela de arquitectura Camila yaryura(1)
Rafael Yaryura
 
Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845
Ibrahim Abdel-Rahman
 
Published Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-final
Published Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-finalPublished Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-final
Published Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-final
Ibrahim Abdel-Rahman
 
Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...
Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...
Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...
Ibrahim Abdel-Rahman
 
The Rise of Internal Audit
The Rise of Internal AuditThe Rise of Internal Audit
The Rise of Internal Audit
Parth Dave
 
nasveti za tek
nasveti za teknasveti za tek
nasveti za tek
Janko Travel
 
UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010
UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010
UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010
Ibrahim Abdel-Rahman
 
The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...
The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...
The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...
Katri Ketola
 
Research Published Paper-157-JMES-2207-Hjouji-March-2016
Research Published Paper-157-JMES-2207-Hjouji-March-2016Research Published Paper-157-JMES-2207-Hjouji-March-2016
Research Published Paper-157-JMES-2207-Hjouji-March-2016
Ibrahim Abdel-Rahman
 
Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845
Ibrahim Abdel-Rahman
 
203-JMES-2230-Chakib-Published Paper-April 2016
203-JMES-2230-Chakib-Published Paper-April 2016203-JMES-2230-Chakib-Published Paper-April 2016
203-JMES-2230-Chakib-Published Paper-April 2016
Ibrahim Abdel-Rahman
 
Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]
Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]
Corrosion inhibition of mild steel by TPPMB in HCl solution (Khayat)[1]
Ibrahim Abdel-Rahman
 
CNC Diversified MV-65 PM
CNC Diversified MV-65 PMCNC Diversified MV-65 PM
CNC Diversified MV-65 PM
Steven Glover
 
DPC-2016-8-10-67-76-Published Paper-July-2016
DPC-2016-8-10-67-76-Published Paper-July-2016DPC-2016-8-10-67-76-Published Paper-July-2016
DPC-2016-8-10-67-76-Published Paper-July-2016
Ibrahim Abdel-Rahman
 
264-JMES-2335-Ellouze-Published Paper-May 2016
264-JMES-2335-Ellouze-Published Paper-May 2016264-JMES-2335-Ellouze-Published Paper-May 2016
264-JMES-2335-Ellouze-Published Paper-May 2016
Ibrahim Abdel-Rahman
 
Effect of Temperature- Stilbazole-380329-Published Paper-2012
Effect of Temperature- Stilbazole-380329-Published  Paper-2012Effect of Temperature- Stilbazole-380329-Published  Paper-2012
Effect of Temperature- Stilbazole-380329-Published Paper-2012
Ibrahim Abdel-Rahman
 
101 que aprendi en la escuela de arquitectura Camila yaryura(1)
101 que aprendi en la escuela de arquitectura Camila yaryura(1)101 que aprendi en la escuela de arquitectura Camila yaryura(1)
101 que aprendi en la escuela de arquitectura Camila yaryura(1)
Rafael Yaryura
 
Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845Research Published Paper-Feb 2016-Morocco-4845
Research Published Paper-Feb 2016-Morocco-4845
Ibrahim Abdel-Rahman
 
Published Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-final
Published Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-finalPublished Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-final
Published Paper-ATPB-BOE-SEP-DEC-2007-1-103-2007-final
Ibrahim Abdel-Rahman
 
Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...
Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...
Corrosion inhibition of mild steel by P,P'-Bis (triphenylphosphonio) methyl b...
Ibrahim Abdel-Rahman
 
The Rise of Internal Audit
The Rise of Internal AuditThe Rise of Internal Audit
The Rise of Internal Audit
Parth Dave
 
UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010
UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010
UAE_Neem_Extract_as_a_Corrosion_Inhibitor-460154-Published Paper-2010
Ibrahim Abdel-Rahman
 
The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...
The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...
The Genetic Background of Chemical Communication and Chemosensory Gene Evolut...
Katri Ketola
 
Research Published Paper-157-JMES-2207-Hjouji-March-2016
Research Published Paper-157-JMES-2207-Hjouji-March-2016Research Published Paper-157-JMES-2207-Hjouji-March-2016
Research Published Paper-157-JMES-2207-Hjouji-March-2016
Ibrahim Abdel-Rahman
 
Ad

Similar to REST API in Salesforce (20)

REST API and CRUD
REST API and CRUDREST API and CRUD
REST API and CRUD
Prem Sanil
 
Resting on your laurels will get you powned
Resting on your laurels will get you pownedResting on your laurels will get you powned
Resting on your laurels will get you powned
Dinis Cruz
 
zendframework2 restful
zendframework2 restfulzendframework2 restful
zendframework2 restful
tom_li
 
Salesforce Integration
Salesforce IntegrationSalesforce Integration
Salesforce Integration
Er. Prashant Veer Singh
 
Resting with OroCRM Webinar
Resting with OroCRM WebinarResting with OroCRM Webinar
Resting with OroCRM Webinar
Oro Inc.
 
MS TechDays 2011 - WCF Web APis There's a URI for That
MS TechDays 2011 - WCF Web APis There's a URI for ThatMS TechDays 2011 - WCF Web APis There's a URI for That
MS TechDays 2011 - WCF Web APis There's a URI for That
Spiffy
 
LAJUG Napster REST API
LAJUG Napster REST APILAJUG Napster REST API
LAJUG Napster REST API
stephenbhadran
 
E zsc2012 rest-api-v2
E zsc2012 rest-api-v2E zsc2012 rest-api-v2
E zsc2012 rest-api-v2
Bertrand Dunogier
 
eZ Publish REST API v2
eZ Publish REST API v2eZ Publish REST API v2
eZ Publish REST API v2
Bertrand Dunogier
 
Rest presentation
Rest  presentationRest  presentation
Rest presentation
srividhyau
 
The Evolving Security Environment For Web Services
The Evolving Security Environment For Web ServicesThe Evolving Security Environment For Web Services
The Evolving Security Environment For Web Services
Qanita Ahmad
 
A2 from soap to rest
A2 from soap to restA2 from soap to rest
A2 from soap to rest
Arnaud Bouchez
 
Rest with Spring
Rest with SpringRest with Spring
Rest with Spring
Eugen Paraschiv
 
Rest web service
Rest web serviceRest web service
Rest web service
Hamid Ghorbani
 
Birds Eye View on API Development - v1.0
Birds Eye View on API Development - v1.0Birds Eye View on API Development - v1.0
Birds Eye View on API Development - v1.0
API Talent
 
SOAP--Simple Object Access Protocol
SOAP--Simple Object Access ProtocolSOAP--Simple Object Access Protocol
SOAP--Simple Object Access Protocol
Masud Rahman
 
Unerstanding and Using RESTful APIs
Unerstanding and Using RESTful APIsUnerstanding and Using RESTful APIs
Unerstanding and Using RESTful APIs
SocialDevCamp Chicago
 
Using the WordPress REST API
Using the WordPress REST APIUsing the WordPress REST API
Using the WordPress REST API
Jonathan Bossenger
 
Building Restful Applications Using Php
Building Restful Applications Using PhpBuilding Restful Applications Using Php
Building Restful Applications Using Php
Sudheer Satyanarayana
 
Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)
Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)
Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)
Pete Morano
 
REST API and CRUD
REST API and CRUDREST API and CRUD
REST API and CRUD
Prem Sanil
 
Resting on your laurels will get you powned
Resting on your laurels will get you pownedResting on your laurels will get you powned
Resting on your laurels will get you powned
Dinis Cruz
 
zendframework2 restful
zendframework2 restfulzendframework2 restful
zendframework2 restful
tom_li
 
Resting with OroCRM Webinar
Resting with OroCRM WebinarResting with OroCRM Webinar
Resting with OroCRM Webinar
Oro Inc.
 
MS TechDays 2011 - WCF Web APis There's a URI for That
MS TechDays 2011 - WCF Web APis There's a URI for ThatMS TechDays 2011 - WCF Web APis There's a URI for That
MS TechDays 2011 - WCF Web APis There's a URI for That
Spiffy
 
LAJUG Napster REST API
LAJUG Napster REST APILAJUG Napster REST API
LAJUG Napster REST API
stephenbhadran
 
Rest presentation
Rest  presentationRest  presentation
Rest presentation
srividhyau
 
The Evolving Security Environment For Web Services
The Evolving Security Environment For Web ServicesThe Evolving Security Environment For Web Services
The Evolving Security Environment For Web Services
Qanita Ahmad
 
Birds Eye View on API Development - v1.0
Birds Eye View on API Development - v1.0Birds Eye View on API Development - v1.0
Birds Eye View on API Development - v1.0
API Talent
 
SOAP--Simple Object Access Protocol
SOAP--Simple Object Access ProtocolSOAP--Simple Object Access Protocol
SOAP--Simple Object Access Protocol
Masud Rahman
 
Building Restful Applications Using Php
Building Restful Applications Using PhpBuilding Restful Applications Using Php
Building Restful Applications Using Php
Sudheer Satyanarayana
 
Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)
Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)
Understanding and Using Rest APIs (SocialDevCamp Chicago 2009)
Pete Morano
 
Ad

Recently uploaded (20)

The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven InsightsAndrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell: Transforming Business Strategy Through Data-Driven Insights
Andrew Marnell
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Cyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of securityCyber Awareness overview for 2025 month of security
Cyber Awareness overview for 2025 month of security
riccardosl1
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded DevelopersLinux Support for SMARC: How Toradex Empowers Embedded Developers
Linux Support for SMARC: How Toradex Empowers Embedded Developers
Toradex
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 

REST API in Salesforce

  • 2. Architecture 1. Stateless 2. Code on demand 3. Easy to use
  • 3. Open End Point Client Server Request Response Example :- 1. Weather APIs of Yahoo, Google etc. 2. Site URL from SFDC
  • 5. More about REST 1. GET, POST, PUT, DELETE 2. The Force.com REST API supports OAuth 2.0 3. Friendly URLs 4. Mobile Apps 5. Force.com site 6. Web to Anything form
  • 6. SOAP API REST API SOAP is a protocol REST is an architectural style SOAP defines standards to be strictly followed REST does not define too much standards like SOAP SOAP defines its own security. RESTful web services inherits security measures from the underlying transport XML data format only Plain text, HTML, XML, JSON Less Popular More Popular
  • 7. Compression • Types of Compression o Response Compression o Request Compression • Compression Headers o Accept-Encoding header. o Content-Encoding header.
  • 9. Creating REST Service 1. Write an Apex Class with annotation @RestResource(urlMapping=‘</resourceURL>*') 2. Create one or more methods using below annotaions:- 1. @HttpGet 2. @HttpPost 3. @HttpDelete 4. @HttpPatch 5. @HttpPut
  • 10. Exposing REST Service 1. For Secured End Points: Use a Connected App 2. For Open End Points: Use Salesforce Sites
  • 11. Calling REST Service 1. Add Server End Point to ‘Remote Site Settings’. 2. Generate Access Token and Instance URL 1. HttpRequest req = new HttpRequest(); 2. req.setMethod('GET'); 3. req.setEndPoint(endUrl+'/services/oauth2/token'); 4. req.setBody('grant_type=password' + '&client_id=' + consumerKey+ '&client_secret=' + consumerSecret+ '&username=' + EncodingUtil.urlEncode(userName, 'UTF-8') + '&password=' + EncodingUtil.urlEncode(password, 'UTF-8')); 5. Http http = new Http(); 6. HttpResponse res = http.send(req);
  • 12. Calling REST Service 3. Calling the REST Api using Access Token: 1. HttpRequest req = new HttpRequest(); 2. req.setMethod(‘GET'); 3. req.setHeader('Content-Type', 'application/json'); 4. req.setEndpoint(instanceUrl+'/services/apexrest/SaveCallLog'); 5. req.setHeader('Authorization', 'OAuth '+accestoken); 6. Http http = new Http(); 7. HttpResponse res = http.send(req);

Editor's Notes

  • #8: Response Compression The REST API can optionally compress responses. Responses are compressed only if the client sends an Accept-Encoding header. The REST API is not required to compress the response even if you have specified Accept-Encoding, but it normally does. If the REST API compresses the response, it also specifies a Content-Encoding header. Request Compression Clients can also compress requests. The REST API decompresses any requests before processing. The client must send a Content-Encoding HTTP header in the request with the name of the appropriate compression algorithm.