This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
Under the Pagination section, you can use the Override URI option and provide the same Next URI expression.
If that doesn't resolve your issue, please share the HTTP Client settings you're using.
It depends. If your $ID are numbers, you can change the expression to
[100, 110, 300].indexOf($ID) != -1
I don’t understand your last question about Mapper. Since you mentioned using the Filter snap, this is for the Filter expression setting.
The error fingerprint is generated from the error stack trace for internal use. It doesn’t indicate that you would need to create a key or fingerprint for your SFTP connection.
Can you please provide other error messages or screenshot?
$notes.replace(/.*(#IF:.{9}).*/, (...args) => args[1])
It replaces the matched string with the first capture group (#IF: and the following 9 characters).
This will not work correctly when the input contains multiple matches. If that’s the case, pleas...