-
Re: Is it possible to skip lines when importing data from CSV?
Define a saved view on your staging module that has a filter, then use that saved view as the source for your second stage import. Still a bit clunky, but should be an improvement provided you can im…1 -
Re: Getting an error when trying to run an Import Action using Python3
If you're running an import the correct endpoint to use is /1/3/workspaces/{workspaceId}/models/{modelId}/imports/{importId}/tasks . You need to substitute your workspace Id, model Id and import Id f…1 -
Re: Importing duplicate rows into a numbered list
LIst imports are designed to support both creating and updating data - very often it's a mixture of both, sometimes known as 'upserting'. Some rows might fail, but if you correct the source data and …1 -
Re: Requesting File ID from Rest API Throws 500 Internal Server Error
Most likely you're encoding the Authorization header incorrectly. Curl can do that for you, so replace that --header with --user username:password and see if it works. The Content-Type header is only…1 -
Re: Requesting File ID from Rest API Throws 500 Internal Server Error
The "--user myemail@address.com" switch causes an Authorization header to be added - just one encoded by curl. Just specify your user ID and it should prompt for a password. By "invali…1