How to create a new record in Zoho Creator via Node.js code

How to create a new record in Zoho Creator via Node.js code

Hi, I am running a workflow via Pipedream and I need to create a new record in Zoho Creator with node.js. I have gone past authentication, but I am very new to node.js coding - can anyone please point me to the right doc/reference how to do it and where should I start learning/digging. If anyone has an example - would be super amazing. 

This is what I have so far for the authentication part - it works, I now need to expand node.js code to insert a new record into a form. Can anyone please guide me to the right direction?

  1. return await require("@pipedream/platform").axios(this, {
      url: `https://creator.${auths.zoho_creator.base_api_uri}/api/v2/applications`,
      headers: {
        "Authorization": `Zoho-oauthtoken ${auths.zoho_creator.oauth_access_token}`,
      },
    })

Thanks a million, 
Alex