ContributionsMost RecentMost LikesSolutionsRe: Migrate projects, pipelines, accounts, tasks across environments While moving the pipelines the associated account (redshift) needs to be in the same project space ? Our pipelines use the account from shared folder at the top level. Although the account name/label is same the account is not being populated while using the migrate pipelines mentioned in this post. Is this expected and are there any workarounds ? How and where do I open a support case? For that last couple of we have getting SL API connection errors. How do I open a support case and follow it up. Re: How to replicate the logic equivalent to while loop in Snaplogic pipelines The difference is rest vs. bulk call. Re: How to replicate the logic equivalent to while loop in Snaplogic pipelines How and where do set these “Has Next” and “Next URL” in the triggered task ? Re: How to replicate the logic equivalent to while loop in Snaplogic pipelines Unfortunately the response object for this Marketo Endpoint doesn’t have “Has Next” or “Next URL” attributes. Otheriwse my life would have been much easier !!! You can find the details of the response object etc in the following link. https://developers.marketo.com/rest-api/endpoint-reference/lead-database-endpoint-reference/#!/Bulk_Export_Leads/getExportLeadsStatusUsingGET GET /bulk/v1/leads/export/{exportId}/status.json https://developers.marketo.com/rest-api/endpoint-reference/lead-database-endpoint-reference/#!/Bulk_Export_Leads/getExportLeadsStatusUsingGET Re: How to replicate the logic equivalent to while loop in Snaplogic pipelines Yes. Its external (Marketo) service.Parent submits a bulk job and in the response object we get a exportID. We have to keep checking the status (REST Get Call to Marketo) of this export job thru another Marketo endpoint which happens in a child pipeline. This child pipeline should be running in while loop kind of thing till we get a success/failure response. Picture of child pipeline attached. Re: How to replicate the logic equivalent to while loop in Snaplogic pipelines All these are REST API Get/POST jobs Re: How to replicate the logic equivalent to while loop in Snaplogic pipelines The parent pipeline queues up a bulk job to export records. The child pipeline keeps getting the status of the job every 60 seconds to get the status till it reaches its end state. I have tried to put everything in the parent pipeline but looks like child pipeline is the best way to go. How to replicate the logic equivalent to while loop in Snaplogic pipelines There is a child pipeline which returns values like completed, in queue, processing etc. The requirement is that parent pipeline to run this child pipeline till it returns Completed, of-course after certain wait time. Its like while loop, run the child pipeline, till the expression is true. How do accomplish this in snaplogic ? Appreciate any pointers…