Skip to main content

#FlowCallout0 人正在讨论

Trailblazer Meetup '24 - 100 Days Challenge, participants will engage in activities focused on Salesforce fundamentals, Apex programming, and Lightning Web Component Training. This includes participating in running challenges and social interactions.

 

Tech Day-11 - Salesforce Lightning Flow  - 6th Apr 2024 (Sat)

https://trailblazercommunitygroups.com/events/details/salesforce-salesforce-user-group-chennai-india-presents-trailblazer-ninjas24-tech-day-11-lighting-flow-part-1/

 

Tech Day-12 - Salesforce Lightning Flow - 7th Apr 2024 (Sun)

https://trailblazercommunitygroups.com/events/details/salesforce-salesforce-user-group-chennai-india-presents-trailblazer-ninjas24-tech-day-12-lighting-flow-part-2/

Trailblazer Meetup '24 - 100 Days Challenge, participants will engage in activities focused on Salesforce fundamentals, Apex programming, and Lightning Web Component Training.

 

Join our 100 Days Challenges - It's 100% Free.

100 Hours of Salesforce Training : https://bit.ly/100HourOfTraining

100 Days of Self-Learning Challenge : https://bit.ly/100DaysOfSelfLearning

100 Days of Running Challenge : https://bit.ly/100DaysOfRunning

 

For Event Updates:

Telegram  : https://bit.ly/TelegramSFUG

YouTube   : https://bit.ly/YouTubeSFUG

LinkedIn    : https://bit.ly/LinkedInSFUG

Whatsapp : https://bit.ly/WhatappSFUG

Twitter       : https://bit.ly/TwitterSFUG

Instagram  : https://bit.ly/InstagramSFUG

 

Note: Share this with your friends, colleagues, and final-year students who are interested in learning Salesforce as a career path. Let's contribute to our community by spreading the word!

 

#Trailhead Challenges

 

#Flows #Screen Flow #Flow Formula #Schedule Triggered Flow #FlowBuilder #Flow Error #FlowCallout #Flow User 

0/9000

Keen to Go With the Flow but not sure where to get started? Already started out with Flow and want to build your confidence?

 

Check out the latest episode of #BeMore with @Andy Engin Utkan (Salesforce MVP) where we discuss all things flow and how you can get started on building up your own experience.

 

This episode is now available to stream on Spotify, Apple Music, Google Podcasts and Amazon Music; https://linktr.ee/bemorewithtombassett

 

It's also available to watch on YouTube too; https://youtu.be/okiHwIIaFNA?si=YNMhEcyt7VDooF1V

 

@Salesforce Business Analysts @* Salesforce Administrators * @Salesforce Flow Automation @Flow Toolbelt @Flow HTTP Callout @Flow for Nonprofit Admins @Flow Orchestration @Flow Reactive Screen Components (GA) @* Salesforce Platform * @Trailblazer Community Cove @Bhavin Patel

 

#Flow #Salesforce #Salesforce Flow #Screen Flow #Flows #MVPOhana #FlowCallout #FlowsInSlack #FlowBuilder 

0/9000

Current Open API 3.0 only allows to fetch the record based on recordId. It would be nice to get the record based on other fields as well.

Ex:

I am using Open API 3.0 to connect two Salesforce systems. I want to if there is any duplicate record existing in the spoke org based on email address. But the current Open API only supports to perform get operations with Id field only.

It would be really useful to allow the action with any other fields as well. In my example like, email field.

Supported by Open API:

{

"resources" : [

"/services/data/v58.0/sobjects/Contact/{id}",

"/services/data/v58.0/sobjects/Contact/{email}"

]

}

Looking for:

Supported by Open API:

{

"resources" : [

"/services/data/v58.0/sobjects/Contact/{id}",

"/services/data/v58.0/sobjects/Contact/{email}"

]

}

below is my idea in IdeaExchange

https://ideas.salesforce.com/s/idea/a0B8W00000Pjy8cUAB/allow-contact-email-field-as-a-resource-through-open-api-30

 

Does anyone have any work around for this ( any references would be appreciated)?

#OpenAPI #RestAPI #FlowCallout

2 个回答
  1. 2023年8月18日 13:31

    Hi Pratyush, 

     

    I went with writing custom apex code to manage the get scenario here and call the apex method through flow to retrieve the result. I had a couple of discussions with Salesforce team and they confirmed me that open API currently support only Id field for get call.

0/9000
3 条评论
  1. Tom Bassett (Vera Solutions) Forum Ambassador
    2023年7月27日 22:04

    In theory you should be able to display the collection in a table, however you'd need to try this theory out as it may require you to store them in a record collection like I did but not actually insert them and instead display them in a table

     

    From the HTTPs callout you get a Apex Collection but not sure if you can directly display that in a table

0/9000