Use Zoho Connections in Functions

Use Zoho Connections in Functions

Hello, 


Following the documentation https://docs.catalyst.zoho.com/en/sdk/nodejs/v2/connectors/connectors/



And was able to connect to Zoho CRM.


However, I found Connections in Catalyst.

It looks like a way to query Zoho CRM without the need for client_id, client_secret, auth_url, and refresh_url


So, how can I use it in the code? 


For example, my current code is: 


const credentials = {
    [connectionName]: {
        client_id: "1000.aaaaaaaaaaaaaaaaaaaaaaaaa",
        client_secret: "bbbbbbbbbbbbbbbbbbbbbbbbbbb",
        auth_url: 'https://accounts.zoho.com/oauth/v2/token',
        refresh_url: 'https://accounts.zoho.com/oauth/v2/token',
        refresh_token: 'abc5555555555555555555555555xyz',
    },
};
const connector = await catalystApp
    .connection(credentials)
    .getConnector(connectionName)
console.log(connector);

It's working

I expect to have something like this with Catalyst Connector:


const credentials = {
    [connectionName]: {
        connectionLinkName: "zoho_crm",
        connectionName: "zoho_crm",
        serviceName: "zoho_crm",
        userAccess: false,
        isUserDefinedService: false,
        sharedBy: "9999999",
    },
};
const connector = await catalystApp
    .connection(credentials)
    .getConnector(connectionName)


But not working


Does someone know how to use the Catalyst Connector?


    • Announcements

    • Catalyst backs Vite.js!

      Hi everyone, We're happy to support the open-source ecosystem that powers modern web development! If you’re building apps with Vite, Catalyst Slate is your go-to platform to deploy blazing-fast frontend apps with ease, scalability, and zero infrastructure
    • Catalyst QuickML 2025 Year In Review

      Hello everyone 👋 It’s been an exciting year for Catalyst QuickML. In 2025, as the Catalyst platform continued to expand its capabilities, QuickML focused on strengthening reliability, developer control, and operational readiness across the AI lifecycle.
    • Introducing GenAI Features in Catalyst QuickML

      Hi everyone, Building machine learning models can often feel slow and complex, especially when teams wait for perfect certainty before testing their ideas. But in reality, faster progress comes from early experimentation—trying out models quickly, learning
    • Announcing Deprecation of Catalyst File Store, Event Listeners, and Cron

      We would like to announce that the following Catalyst features are now in their deprecation phase and will reach End Of Life (EOL) on 30 April, 2026- Catalyst File Store Catalyst Event Listeners Catalyst Cron New users who sign up for Catalyst from today
    • React Nexus 2025 Recap: Catalyst Slate in Action!

      Hey Catalyst Community! We recently attended the React Nexus 2025 conference, an exciting gathering for frontend enthusiasts and React developers. Our team had an incredible time presenting and conducting a hands-on workshop on Catalyst Slate, our streamlined

      Catalyst Community