Hi, my situation is like this: I request all objects from an API where every object has an Id. Now I need to make API requests for every one of this Ids where the Id is a parameter in my GET URL.
Is this possible somehow?
Thank you and best regards
Hi, my situation is like this: I request all objects from an API where every object has an Id. Now I need to make API requests for every one of this Ids where the Id is a parameter in my GET URL.
Is this possible somehow?
Thank you and best regards
Hey @Lukas_Ginsberg,
Try using the Enrich with an API step. You can dynamically add values from your Id column into your endpoint URL using merge tags. Your endpoint might look like this:
https://third-party-api-goes-here.com/objects/{Your_Object_Id_Column}
Let me know if that helps!