Welcome to the new Box Support website. Check out all the details here on what’s changed.

Upload file through NetSuite Suitelet script

New post

Comments

4 comments

  • Box Product Support

    Were you ever able to upload a file to Box using SuiteScript?

    0
    Comment actions Permalink
  • PardeepChopra

    Nope 

     

    0
    Comment actions Permalink
  • Shiv Rastogi

    Hello Box Team,

    I've developed a NetSuite script1.0 to download and upload a file from BOX's folder.

    (a) From Box to NetSuite I'm able to download file through NetSuite script using Box Api and working fine however

    (b) I'm trying to upload file From NetSuite to Box's folder, always getting error response code-415 (i.e. Box Error: 'Unsupported Media Type).

    Could you please check below codes and suggest the required modification in code?

    function postFileNetSuiteS2BOX(boxFolderId, nsFileId, boxApiAccessToken)
    {

    var restUrl = 'https://upload.box.com/api/2.0/files/content/';
    var restHeaders = new Array();
    restHeaders['Content-Type']='multipart/form-data';
    restHeaders['Authorization'] = 'Bearer ' + boxApiAccessToken;
    var fileObj = nlapiLoadFile(nsFileId); //Load excell file
    var fileURL = fileObj.getURL(); //file url of NetSuite file cabinet's folder
    var nsFileType = fileObj.type;
    var fileContent = fileObj.getValue(); //Content of excel file
    var nsFileName = fileObj.getName(); //Name of excel file
    var parent = { 'id': boxFolderId.toString()};
    var attribs = { 'name' : nsFileNameStr.toString(), 'parent' :parent};
    var body = { 'attributes' : attribs, 'file' : fileURL};
    nlapiLogExecution('DEBUG', 'File Attributes', JSON.stringify(body));
    var postReq = nlapiRequestURL(restUrl, body, restHeaders, null, "POST");
    return postReq;
    }

    Your quick response will highly apricated!

    Thanks,

    Shiv Rastogi

    0
    Comment actions Permalink
  • Steven Oakes

    Shiv,

    How were you able to download a file FROM Box TO Netsuite using suitescripts?

    0
    Comment actions Permalink

Please sign in to leave a comment.