GET API In Flow designer

SoudarapuN
Tera Contributor

hey team,

i have a requirement that i need to call get method API of another instance into flow designer of my instance and create the records of that api in my instance. need to send notifications to any two users when data is imported from GET API.

I have done this with scheduled script but unable to send notifications when data is imported But data is successfully imported to my instance. So how can i do this requirement using flow designer

3 REPLIES 3

JenniferRah
Mega Sage

For the scripted solution, you could trigger a custom alert in your script that triggers the notification to be sent. 

 

For a Flow, you can create an Action to do the REST call. Just add a REST step into it. That action should return the results from your call as an array of objects. So your Flow would look something like this:

 

  1. Call action to run GET REST call
  2. For each item in your array of objects returned by the step above:
    1. Create the needed Record
  3. Send email

I know this is very vague, but I hope it makes sense with your requirements.

Could you tell me how to create action for calling get api