Get Authentication Credentials

Note: This SDK can only be accessed within Catalyst services like Functions and AppSail. It cannot be used to integrate with third-party services.

This SDK method can be used obtain the authentication credentials for various Zoho services, listed as Default Services.

The connections reference used in the below code snippet is the component instance.

copy
// create connection instance
const connections = app.connections();
// retrieve the authentication credentials for the specified connection
const connectionResponse = connections.getConnectionCredentials('payrollcon');
// connection response
console.log('connection response: ', connectionResponse);

Last Updated 2026-02-02 14:37:02 +0530 IST