ContributionsMost RecentMost LikesSolutionsRe: HTTP Snap Query parameters issue Would you mind posting the screenshot of your snap settings? Re: SOAP execute snap vs REST post/Http client snap In tools like postman, u have to prepare the entire request (url, headers, payload, etc) and then execute it. And, in soapui too, first you will prepare the request though soapui generates a pre-populated envelope where you have to only supply the values. Once the request (url, payload, etc) is ready then you will hit the request. And, you get raw xml response which is not processed further. In the soap snap, once you hit the execute button, it doesn't directly hit the endpoint. It has to do some preprocessing (check if there are any placeholder values in the envelope to replace them with the values from the output of previous snap, remove empty elements from the envelope, etc). Once the enveloped is evaluated and optimised then it hits the endpoint. And, once the raw xml response is received, the snap will then process the response to convert into a snaplogic document so the next snap can consume this output. Due to the pre and post processing involved in the snap, the response time for the execution of the snap could be slightly more than that of postman, soapui, etc. HTH. BTW, can you tell how much difference you see in the execution time of the snap vs soapui? Re: Is migrating of REST Snap to Http Client still mandatory No, its NOT mandatory any more to do that migration but recommended. See if this https://docs-snaplogic.atlassian.net/wiki/spaces/SD/pages/1438445/REST+Snap+Pack+Not+Recommended helps. Re: Salesforce Update REST API Throughput tarena , the update snap should support rest and bulk apis (available via dropdown). Can you try using bulk api instead? Also, I believe we have salesforce bulk update snap too that can be leveraged here. FYI Re: SQL Server - Bulk Load in Linux Please use bcp version 17 or lower for now. We don't yet support version 18 or higher. HTH Re: SFTP errors Also, please work with the support team, and file a ticket so we can help fix this. Re: SFTP errors Pls provide the runtime ID. Re: How to add textarea type input to a custom snap? Can you upload your GPGAAccount.java here? Re: How to add textarea type input to a custom snap? do share the full body of the configure() method. Re: "The CSV record has more columns than data" getting this error when trying to read multiple files No enough information to help here. Looks like you are not escaping the delimiter that is part of data. Can you tell us here what was your delimiter configured, and whats the row of data that is having this problem?