ContributionsMost RecentMost LikesSolutionsPagination in HTTP Client snap Hi All, I am working with HTTP client snap and this is my first snap in the pipeline and i am using GET method to read data from API. I have to make sure data from all pages gets captured from source and for that i have to use pagination. Can anyone help me in this as i have never used this function. Need to know only columns which has update Hi Guys, If I have to load delta records through snaplogic into a target system and only those fields which has some updates. suppose we are getting 20 fields from source,Is it possible to know out of them how many fields have actually updated from the last run? Please help!! Need to create sftp path Hi Guys, I have to load a file into sftp location. I got hostname,portname,username and password. I can see the directories in winscp. But i have to access it through snaplogic. I created binary>Basic Auth sftp account with username nd password. I dont know the whole sftp path so i am not able to access it through snaplogic. Can you guys help me in this? what will be the sftp path? suppose hostname : sftp.abc.net port name : 44 username :abc directory : /ar/um/ Can we create sftp path ? Re: Data post through BULK API @dmiller Fusion (Risk Management). The Fusion Framework System, built on the Salesforce Lightning platform. Data post through BULK API Hi, I need to load data in my target application using BULK API. Which snap I have to use in this case? Please help! Re: How to get user details from Service Now Is there any table in service now which stores ticket details with user id? Re: How to get user details from Service Now Anyone has worked on above scenario then please help. How to get user details from Service Now I have a scenario in which I have to fetch user details from service now whenever any new user creates a ticket for a particular application for access. How to get that user details from Service now through Snaplogic? Re: How to add leading 0 in a particular column value to make it fixed 9 digit number $value.toString().length < 9? ‘0’.repeat(9 - $value.toString().length) +$value: $value This is working Re: How to add leading 0 in a particular column value to make it fixed 9 digit number This is not working. Can you explain little more $value : 1234 I want it as 000001234 $value : 12345 I want it as 000012345 total length = 9