Skip to main content

Hello fellow Zapiers.

Need help in converting a 9 digit numeric value to MD5 HAsh to use in the follow-up steps.

 

I have tried almost all formatting options but could not find any options for it.

 

Any help will be much appreciated.

Hi @Armen 

You’d have to use a Code step: https://zapier.com/apps/code/help

 

CONFIG

 

RESULTS

 


thank you for that that was what I was looking for. 

 

much appreciated.

 


I just want to post the actual code here for others to copy and paste.

let crypto = require('crypto');
let Digits = inputData.Digits;
let Hash = crypto.createHash('md5').update(Digits).digest('hex');
output = [{Digits, Hash}];

 

Thank you again Troy.