Hello Trailblazers,
Please find the below list of all the tutorials in Salesforce Integration Tutorial Series from SFDC Stop:-
API Clients Tutorials:-
The full code used in the tutorial series is available at the GitHub Repository here:- https://github.com/rahulmalhotra/SFDC-Integration-Tutorial
Please find the below list of all the tutorials in Salesforce Integration Tutorial Series from SFDC Stop:-
- Salesforce Integration Tutorial Part 1 - Introduction and Setting up Workbench
- Salesforce Integration Tutorial Part 2 - Exploring GET Method
- Salesforce Integration Tutorial Part 3 - Exploring POST Method
- Salesforce Integration Tutorial Part 4 - Exploring DELETE Method
- Salesforce Integration Tutorial Part 5 - Exploring PUT Method
- Salesforce Integration Tutorial Part 6 - Exploring PATCH Method
- Salesforce Integration Tutorial Part 7 - Creating a test class for Apex Web Service
- Salesforce Integration Tutorial Part 8 - Apex REST Callouts
- Salesforce Integration Tutorial Part 9 - Test class for Apex REST Callout
- Salesforce Integration Tutorial Part 10 - SOAP API Callout
- Salesforce Integration Tutorial Part 11 - Test class for SOAP API Callout
- Salesforce Integration Tutorial Part 12 - Creating a SOAP Web Service in Apex
- Salesforce Integration Tutorial Part 13 - Creating a Test Class for a SOAP Web Service in Apex
API Clients Tutorials:-
- How to connect to Salesforce with Postman ?
- How to connect to Salesforce using SOAP APIs ? SOAP UI Tutorial
The full code used in the tutorial series is available at the GitHub Repository here:- https://github.com/rahulmalhotra/SFDC-Integration-Tutorial
Happy Trailblazing..!!
I want to know detail about how to do put method using apex class ? and how to run without workbench
ReplyDeleteHi,
DeleteFor the PUT method you can have a look at the 5th tutorial in the series given above:- https://www.sfdcstop.com/2019/11/salesforce-integration-tutorial-part-5.html
And to learn how to connect without workbench you can view the postman tutorial mentioned above:- https://www.sfdcstop.com/2019/01/how-to-connect-to-salesforce-with.html
Thanks!
Hi Rahul
ReplyDeleteI I want to know how to perform upsert operation using put method. I am getting two parameters id and country to identify existing records. Based on the id and country I have to upsert records. There will be multiple records in json. Please help e how to this
Hi, first of all create a map of id and the related country, then query the records with those ids by using the map keyset() that are present in the system and loop those records, update the country in those records in the loop itself and remove the entry from the map.
DeleteFinally, loop the remaining map and add new records to insert in the same list. Upsert that list.