ContributionsMost RecentMost LikesSolutionsRe: Expression in router Hello @Sahil, You need to write the next expression: in the first route: ($Z7_COND.IDOC.MES == ‘ED’ || $Z7_COND.IDOC.MES == ‘PD’) && ($Z7_COND.IDOC.REC == ‘34’ || $Z7_COND.IDOC.REC == ‘PD’) in the second route write true and check the first match: BR, Marija Re: Expression to keep leading zero in a number Hi @mtran21 In mapper you just do next: “0” + $MyNum and you have “MyNum” as string now. Hope this is what you needed. BR Re: Looking for sample API pipeline @mtran21 As @Spiro_Taleski mentioned about using Triggered tasks above, I expanded the example using triggered task and tested via Postman. Here’s the pipeline SL_Community_TriggeredTask_2021_01_29.slp (12.5 KB) I hope this will help you. You can try different scenarios via Postman. Regards, Marija Re: Looking for sample API pipeline Hello @mtran21 Here’s a simple pipeline for GET call: I’m using the following Service URL to GET weather info in this case for London: As you can see, you need to provide your APPID, you will have that after successful registration on the OpenWeatherMap. There’s a lot of different ways to get weather information about one or more cities. Also, you can make this or another call using pipeline parameters as query parameters. After a successful api call, you need a mapper, to make your data flat and to map only needed fields. And then you can insert data in DB table, in this case I’m using MySql. No matter which DB you use, you are going to need an Account. Hope this will help. BR, Marija