In case schema added in description is not working for you( there are some indentation errors ), below can be referred : openapi: 3.0.0 info: version: '1.0.0' title: Employee Search API description: API to search employees in the system. paths: /employee: get: tags: - EmployeeAPI summary: API to search employees operationId: searchEmployee description: | Use this endpoint to search for an employee in the system by their Employee Number. parameters: - in: query name: employeeNo description: Employee Number to search in the system. required: true schema: type: string responses: '200': description: Search results matching the criteria. content: application/json: schema: type: array items: $ref: '#/components/schemas/Employee' '400': description: Bad input parameter. content: application/json: schema: type: object properties: error: type: string example: "Invalid Employee Number format." components: schemas: Employee: type: object required: - empNo - employeeName - employeeAge - employeeJoiningDate properties: empNo: type: string format: uuid example: emp-01 employeeName: type: string example: Test Name employeeAge: type: integer format: int32 example: 19 employeeJoiningDate: type: string format: date example: '2015-01-01' servers: - url: virtserver.swaggerhub.com/YOUR_USERNAME_HERE/Employee/v1
You don't know how excited I am when I saw thumbnail of this video. Literally my feeling is "Hammayya" . Please continue Salesforce videos🙏 like LWC, Clouds like Sales, Service, CPQ etc. Thank you for the wonderful content.
Before i dont understand how to do the integration..i saw so much videos on youtube but i didnt understand anything..but when i saw your integration videos i learn so much about integration..now i know the integration how it work...thank you for this video..
Thank you so much for posting such important topic in such a clear and interesting way. Have been a fan of your videos for a long time and we all have been patiently waiting for your comeback! Looking forward to seeing more videos from you!
Good to see sir, you have start creating content again. I love your explanation. I learnt many concept from your videos and got job as salesforce developer. please share your linkedIn profile link. love to be the part of your network
Your teaching style and abundance of knowledge, varieties, visuals, explanation, logic, queries by Q boy and solutions are mesmerizing. It is valueableee than any course available in Udemy or on any other platform. Some taught 2, some other 3, some other 1 about integration. it only put me in more and more doubt by other instructors in Udemy. JUSTTT THANKS A LOT AND PLEASE KEEP COMING WITH SUCH AMAZING, EXCLUSIVE CONTENT. We miss your videos.
Sreekanth, so cool.. man your channel should be awarded ... Your videos are the best for any beginners. Kind of you to take time and post this. Any plans of LWC .. pls consider LEC next that is another tiger that needs to be converted to a cat 😊
Welcome back Shrikant sir❤ Thankyou for covering this topic and explaining everything so nicely. Please make series on LWC also, its an humble request.
Usually I wont add any comments in UA-cam but now I just wana say onething after seeing this video from sreekanth ahnna.. Once upon a time there lived a Ghost and he is Not a Myth anymore
Amazing lecture, sir! So happy you're back 😊. Just a small suggestion: At 2:16:14, I think the checkbox was shown under the standard SOAP API by mistake. Since we had just covered Apex REST API, it got a bit confusing, but I figured it out after cross-checking. Thanks again for the great content!
Thanks for pointing out, its editing mistake. I placed it wrongly for 2 scenarios, due to limitation with youtube i cannot swap them, i may need to trim them out for avoiding any confusion. Thanks Devansh
Hi Srikant it's truly amazing series additionally we are expecting LWC complete series hope your next series might be on LWC finger crossed and if possible start coaching classes for salesforce.
Hello Srikanth, During the integration of two Salesforce orgs, I encountered an error with status code 404 while using the 'Salesforce API' profile. (You used 'System Admin' profile that's why you did't encountered this error). To resolve this, I created a permission set with Create, Read, Edit, and Delete (CRED) access on the Account object and assigned it to the Salesforce API user. This resolved the issue successfully. Thank you
Hello pls make video on batch apex as well as on lwc. Loved your work . Your videos are so informative. Im from non tech background i learnt triggers from your videos. Thanks for the videos
in scenario 10 , as salesforce is initiating the transaction it would be outbound integration and platform event is created in SF , so what is the need to created connected app when we are sending the data to external system ? Can some one explain this ?
Its on the Org limitations dependent. For unlimited version Orgs, total we can have 100000 calls + (No of licences our SF Org purchased * calls per license type).. lets say we have 10 licenses. which means 100000 + ( 10 * 1000) = 1,10,000. So Salesforce can receive 110000 calls for 24 HOURS. in the above example 1000 is apis allowed for Salesforce platform license. 10 is no of licences our org has. 100000 is default limit. Hope this clears your doubt.
i love the way you explained, but have one confusion about PUT and PATCH somewhere you said PUT is for update and PATCH is for upsert than after few minutes opposite of that so just tell me once more coz i am confused about PUT and PATCH
Lets say we have 10 fields in Account Object. In your request if you send PUT, then you either send all 10 fields or few fields in request, all the fields in Account object will get updated (Eg: if you send 4 fields in json, those 4 fields update and rest 6 of them update with null/blank values). PATCH is little mercy here. ONLY THE FIELDS YOU SEND WILL UPDATE (eg: if you send 4 fields in your request with PATCH, those 4 fields update, rest 6 of them will be intact)
In case schema added in description is not working for you( there are some indentation errors ), below can be referred :
openapi: 3.0.0
info:
version: '1.0.0'
title: Employee Search API
description: API to search employees in the system.
paths:
/employee:
get:
tags:
- EmployeeAPI
summary: API to search employees
operationId: searchEmployee
description: |
Use this endpoint to search for an employee in the system by their Employee Number.
parameters:
- in: query
name: employeeNo
description: Employee Number to search in the system.
required: true
schema:
type: string
responses:
'200':
description: Search results matching the criteria.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Employee'
'400':
description: Bad input parameter.
content:
application/json:
schema:
type: object
properties:
error:
type: string
example: "Invalid Employee Number format."
components:
schemas:
Employee:
type: object
required:
- empNo
- employeeName
- employeeAge
- employeeJoiningDate
properties:
empNo:
type: string
format: uuid
example: emp-01
employeeName:
type: string
example: Test Name
employeeAge:
type: integer
format: int32
example: 19
employeeJoiningDate:
type: string
format: date
example: '2015-01-01'
servers:
- url: virtserver.swaggerhub.com/YOUR_USERNAME_HERE/Employee/v1
worked for me Replaced from "paths:" till "example: '2015-01-01'"
tnq
Please do not leave us after now. Welcome back.
@@shanuanand2050 Thank you so much for your words
Legend has arrived, Hats off Sreekanth
Waiting for more videos
@@memesv3.093 Sure Thank you so much!
You don't know how excited I am when I saw thumbnail of this video. Literally my feeling is "Hammayya" . Please continue Salesforce videos🙏 like LWC, Clouds like Sales, Service, CPQ etc. Thank you for the wonderful content.
Hi Srikanth, So happy that you are back. Make a video in Apex basic to advance so developer learn fast😚
Hi Srikanth, good to see you again. Thank you for all the hardwork you put in for the community.
5 hours video entra vegi. Enni rojulu teesukunav prepare cheyadaniki. Great dedication machaa 👏👏
Have been looking for a new video from you, glad that you are back
Your videos are very crystal clear.
Hello Sreekanth thank you for all the salesforce related videos, all the videos were very helpful and welcome back ❤
Thankyou so much for coming back..we need your videos
Thank you Thank you Thank you so much for the com back Please do not leave us after now. Welcome back KING OF SALESFORCE AND EINSTEIN - SRIKANTH
Hi Srikanth, So happy that you are back, Hoping to get more videos from you in the future.
Thank you for coming back. We missed you. 🎉
Thank you soooo much. Most awaited session. First time I am learning integration without feeling bored
Most awaited topic from you sir 👏👏👏👏💐
Omg.....thank you for coming back. I am so happy 😊
Before i dont understand how to do the integration..i saw so much videos on youtube but i didnt understand anything..but when i saw your integration videos i learn so much about integration..now i know the integration how it work...thank you for this video..
After the long time, the video quality and content creation was very good
Thank you so much for posting such important topic in such a clear and interesting way. Have been a fan of your videos for a long time and we all have been patiently waiting for your comeback! Looking forward to seeing more videos from you!
Great content. Very detailed explanation. Looking forward to see more such salesforce content from you.
Glad u are back, Sir. Thanks much for the great video. Very excited to watch it
Love your content !! Simple & Scenario based explanations. Thanks for all that you do ! Please continue covering different topics
Good to see sir, you have start creating content again. I love your explanation. I learnt many concept from your videos and got job as salesforce developer. please share your linkedIn profile link. love to be the part of your network
Your teaching style and abundance of knowledge, varieties, visuals, explanation, logic, queries by Q boy and solutions are mesmerizing. It is valueableee than any course available in Udemy or on any other platform. Some taught 2, some other 3, some other 1 about integration. it only put me in more and more doubt by other instructors in Udemy. JUSTTT THANKS A LOT AND PLEASE KEEP COMING WITH SUCH AMAZING, EXCLUSIVE CONTENT. We miss your videos.
Welcome back sir ji 🤩🥳
Sreekanth, so cool.. man your channel should be awarded ... Your videos are the best for any beginners. Kind of you to take time and post this.
Any plans of LWC .. pls consider LEC next that is another tiger that needs to be converted to a cat 😊
Thank you, for posting videos and Welcome back Srikanth. Expecting more videos
heard from friend today for integration video....great to see you back in ground
Waited so long for your videos.❤
Learn so much from your videos, welcome back and share your knowledge with us. 😊😊
"Keep those awesome videos coming! Can't wait for your next drop on LWC and more cool content!"
So happy to see you are back
Anna vachesadu 🤩..ennallaku mi darsanam ayindhi
Haha
Omg, you are back, Thanku for the video sir, please keep posting videos like this. We really really need you 🙏🙏🙏
Thanks for your time to make learning fun bro
Welcome back Srikanth.
Yehooow, happy to see you back!
Happy to see you again thanks for coming back
Your video are really helpful for every Salesforce developer
Welcome back Shrikant sir❤ Thankyou for covering this topic and explaining everything so nicely. Please make series on LWC also, its an humble request.
What i learned for years was explained in few hours
We are really waiting for long time your video's are awesome
King is back!
wow !integration can be so easy to understand in salesforce.
Thank you for the detailed video.
Can you please make video on files and attachments integration.
Thank you in advance.
Your Videos are very helpful. expecting more videos on integration and salesforce cloud's Thank you.
Thank you for the very good understandable video of all about Integration.
Usually I wont add any comments in UA-cam but now I just wana say onething after seeing this video from sreekanth ahnna.. Once upon a time there lived a Ghost and he is Not a Myth anymore
Amazing lecture, sir! So happy you're back 😊. Just a small suggestion: At 2:16:14, I think the checkbox was shown under the standard SOAP API by mistake. Since we had just covered Apex REST API, it got a bit confusing, but I figured it out after cross-checking. Thanks again for the great content!
Thanks for pointing out, its editing mistake. I placed it wrongly for 2 scenarios, due to limitation with youtube i cannot swap them, i may need to trim them out for avoiding any confusion. Thanks Devansh
Good one. Consider dividing the video into multiple chapters.
Hi Srikanth, Hope you are doing well , Your way of explanation is excellent , Thanks looking for videos
great work bro i am grateful to your work and knowledge
Well come back ❤🎉 sir 💐
Really awesome contents. Thanks a lot ❤. We really expect more videos from you like this 😅. Please teach us LWC and Aura like this🙏
Thank you very much Sreekanth. very helpful video.
Hi Srikant it's truly amazing series additionally we are expecting LWC complete series hope your next series might be on LWC finger crossed and if possible start coaching classes for salesforce.
Excellent explanation sir. Thankyou
Finally after a long time 😊
After years of waiting u back 😅
Awesome video, thank you very much 😊😊
your explanation are super awesome
Hi Srikanth welcome back legend make more video on LwC please
Hello Srikanth,
During the integration of two Salesforce orgs, I encountered an error with status code 404 while using the 'Salesforce API' profile. (You used 'System Admin' profile that's why you did't encountered this error).
To resolve this, I created a permission set with Create, Read, Edit, and Delete (CRED) access on the Account object and assigned it to the Salesforce API user. This resolved the issue successfully.
Thank you
Awesome, I Now i become a master of Intergration., Thank you so much !
Welcome back please make videos on LWC soon😢
OMG 😮 welcome back🙌
Welcome back sreekanth
Bro finally you are here🤩😎
Srikanth : Posts a video on integration
Comments : dekho ye zinda hai, where are you man, ela unnau, kasie ho etc..
Hello pls make video on batch apex as well as on lwc. Loved your work . Your videos are so informative. Im from non tech background i learnt triggers from your videos. Thanks for the videos
Welcome back 🎉❤
Thank you so much , can you make video on Agentforce AI in Salesforce?
yes we really want this
In REST call out, what is the best practice to store credentials like External system URL, user name , password and security keys.
i am beginner to salesforce integration, is it good to start from this and is this enough for knowledge and start work after this?
Please reply
Welcome back sir
Please create some videos on Aura Components with use cases. Thanks!
Welcome ❤
Hi shreekant good to see u buddy
Did u cover real time integration in this video I haven't seen it but I will see it
Sir what's the difference between Garphql API and composite API
Your vedios are very helpful, please if you could make a Vedic on CPQ, Omnistudio.
Welcome back in 2024🎉
Boss is back......🤘
Great video
curl command url, could oyu please mention it better way, not able to navigate. Thanks
Welcome back brother
Thanks for this video❤
in scenario 10 , as salesforce is initiating the transaction it would be outbound integration and platform event is created in SF , so what is the need to created connected app when we are sending the data to external system ? Can some one explain this ?
I'm curious if the AI Salesforce is on your radar for the future. It recently emerged, and I believe it’s important to address it sooner
agree, this is much needed, i hope he considers it
Super comeback with super conent
Hi, Inbound create/update/delete allows one record at a time what's the maximum record limitation for Rest API?
Its on the Org limitations dependent. For unlimited version Orgs, total we can have 100000 calls + (No of licences our SF Org purchased * calls per license type).. lets say we have 10 licenses. which means 100000 + ( 10 * 1000) = 1,10,000. So Salesforce can receive 110000 calls for 24 HOURS. in the above example 1000 is apis allowed for Salesforce platform license. 10 is no of licences our org has. 100000 is default limit. Hope this clears your doubt.
i love the way you explained, but have one confusion about PUT and PATCH somewhere you said PUT is for update and PATCH is for upsert than after few minutes opposite of that so just tell me once more coz i am confused about PUT and PATCH
Lets say we have 10 fields in Account Object. In your request if you send PUT, then you either send all 10 fields or few fields in request, all the fields in Account object will get updated (Eg: if you send 4 fields in json, those 4 fields update and rest 6 of them update with null/blank values). PATCH is little mercy here. ONLY THE FIELDS YOU SEND WILL UPDATE (eg: if you send 4 fields in your request with PATCH, those 4 fields update, rest 6 of them will be intact)
@SalesforceExclusive Thank you for your time, means PATCH will work like UPDATE and PUT will be like UPSERT
thank you😊
Sir needs LWC Crash course pls
Could you integrate real time payment gateway with the Salesforce that will help us a lot
Can you plz upload the Lwc videos also....
Hey Sreekanth ....can you please make a vedio on Lwc...
Please Do the video of LWC
Wow very easy❤
Finally welcome😊