RE: Has anyone in the NS developer world ever push/upload a csv file from external drive into Netsuite file cabinet using a RESTlet
I implemented (tried to) the file-cabinet-api restlet (Tim D) and testing with Postman. My Tokens are good as I tested with a GET call using a simple Hello World function. When I try to use the fileCreate function in the restlet to upload a file from my local drive to the file cabinet, it fails. I used the Hello World example in the script, but no file was created. I tried fileGet and it didn’t work either.
I have searched and searched and it seems that no one has done this using a NS RESTlet. I have successfully implemented an email capture plug-in that pushed a csv file into the File Cabinet, but when you have financial data, email is unacceptable.
Thanks for any help. Since I’m new, I will continue to search this community.
@yogiupadhyay Thank you for your response. I waited two years for a solution. I will begin to implement asap. I’ll return to give an update on this.
Thanks!!
2ps
If you can post sample code for your restlet, we can walk you through the suitescript to save the file to the filecabinet. You can also do this easily using suitetalk.
soakes55
var file,log;
define( [ ‘N/file’, ‘N/log’], main );
function main( fileMod, logMod ) {
file = fileMod;
log = logMod;
return {
post: postProcess
}
}
function postProcess( request ) {
if ( ( typeof request.function == ‘undefined’ ) || ( request.function == ” ) ) {
return { ‘error’: ‘No function was specified.’ }
}
switch ( request.function ) {
case ‘fileCreate’:
return fileCreate( request )
break;
default:
var response = { ‘error’: ‘Unsupported Function’ }
return response;
}
}
function fileCreate( request ) {
// Load the file.
try {
var myfile = file.create(
{
name: request.name,
fileType: request.fileType,
contents: request.contents,
description: request.description,
encoding: request.encoding,
folder: request.folderID
}
);
// Save the file and get its ID.
var fileID = myfile.save();
// Load the file.
myfile = file.load( { id: fileID } );
// Create the response.
var response = {};
response[‘info’] = myfile;
response[‘content’] = myfile.getContents();
return response;
} catch (e) {
return { ‘error’: e }
}
}