ContributionsMost RecentMost LikesSolutionsRe: Copy and rename mutliple files Hi, Create a master pipeline and get list of file names from the database (original file name and new file name). After collecting file names, place a pipeline execute snap and invoke the child pipeline. In the pipeline execute snap,configure the filenames as below. In the child pipleine, place a file reader snap provide the details to read the original file name using _original_file_name pipeline parameter. In the file writer snap, provide the details to create a file using _new_file_name pipeline parameter. Re: Remove emply/null value fields from JSON Hi Rajesh, Use JSONPath to remove any keys where the values are empty/null as follows: jsonPath($,“$…[?(value == null) || (value == “”)]”) In a mapper, put this in the expression field and leave the target field blank. Click on Pass Through. The response is Please find the attached pipeline. Remove_Empty_Null_Values_2020_12_03.slp (4.9 KB) Re: Check failed pipelines details in a specific org Hi Gaurav, Please find the answers below. What should be the value in the Authorization field. Is it the username that I used to login to Snaplogic? It is the Bearer token generated by your account details (Username & Password). Also for the REST GET Snap ,should I use the Basic Auth Account? You can use the Basic Auth Account. Thanks, Srinivas. Re: Milliseconds to Date Hi Gaurav, Please find the attached pipeline to achieve Milliseconds to Date conversion in the specified format. Regards, Srinivas. Milliseconds to Date_2018_10_30.slp (4.8 KB) Check failed pipelines details in a specific org Created by @rvsrinivasrao This pipeline pattern shows pipeline execution statistics via email. The email shows the details on reasons why pipelines failed. Configuration The pipeline failure details shown on the email include: CustomerName – Name of the Customer for whom we are generating the report CustomerOrg – Name of the Org where we are getting pipeline executed information PipelineMonitoringAPI – API to fetch pipeline executed information To – The receiver list in the email Authorization – Account to access the pipeline executed information Sources: run time execution details of failed pipelines from the Pipeline Monitoring API Targets: Email Snaps used: REST Get, Mapper, JSON Splitter, Union, Email Sender Downloads To Check all the pipelines Execution.slp (16.2 KB) Re: How to send email with empty email body Hi, You can get an empty body in email by placing a mapper before email sender snap and configure the mapper as below. In Email Sender snap, select $body as Template body. Thanks, Srinivas.