var data = new FormData();
data.append('id', dncListId);
data.append('file', filebutton1.parsedvalue['0']);
data.append('fileType', 'dnclist');
data.append('phoneColumns', 'PhoneColumnName');
data.append('emailColumns', 'EmailColumnName');
then i am going to trigger my api and need to send the data through additional scope. I have the additional scope working, but i can't seem to get the data in right format to adde the additional columns above like filetype and columns. thoughts?