Error occurs in Zoho books widget

Error occurs in Zoho books widget

I'm developing a widget for Zoho Books. In my scenario, I need to transfer data to a custom module. I'm utilizing the Request SDK method to submit the data. However, I'm encountering an error in this process.

Code
  1. var options = {
      method: "POST",
      url_query: [{
        key: 'organization_id',
        value: organization_id
      }],
      headers: [{
        key: 'content-type',
        value: 'application/json'
      }],
      body: {
        mode: 'raw',
        raw: `{"record_name": "1", "cf_certified": "TUV"}`
      },
      connection_link_name: "zohobooks"
    };

    console.log(options);

    ZFAPPS.request(options)
      .then(function (value) {
        let responseJSON = JSON.parse(value.data.body);
        console.log(responseJSON);
      })
      .catch(function (err) {
        // Error Handling
        console.error(err);
      });
Error 


Please give me sample code.

Thank you