can not make a multi form post request via JS run without error

  1. First Question

I have a route tested in insomnia which is working
The route is sent aswith multiform option
also, I have to setchange the preferences in insomnia not to validate SSL

However, I can not make it work on JS

import FormData from 'form-data';
import fetch    from 'node-fetch';
import  https   from 'https';

// process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '0';

const form = new FormData();
form.append("...", "...");
form.append("...", "...");
form.append("...", "...");
form.append("...", "...");

// Following block is to bypass wht authorization
const httpsAgent = new https.Agent({
  rejectUnauthorized: false,
});

const options = {
  method: 'POST',
  headers: {
    'Content-Type': 'multipart/form-data; boundary=---011000010111000001101001',
    // 'User-Agent': 'insomnia/2023.5.8',
    'agent': httpsAgent,  // This Line is to bypass wht authorization
  }
};

options.body = form;

fetch('https:XXXXX', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

If I dont add form-data, I can not make a multiform option
If I dont add httpAgent, I can not avoid SSL from been verified.
Still, the request sends an error in token.

What am I doing wrong?
How to bypass ALL this requirements

  1. Second Question
    As I said before, I have this route running properly under insomnia
    How can I make to invoke a specific request (from outside INSOMNIA) and make it execute every XXX seconds? Can this be done automatically?

TIA