Get Authentication CredentialsAdmin Scope

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

  • Ensure you have installed the required package to use this SDK method.

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 a connection instance
const connections = new Connections();
// retrieve the authentication credentials for the specified connection
const response = await connections.getConnectionCredentials('payrollcon');
// connection response
console.log('Connection Response:', response);

Last Updated 2026-07-02 14:51:41 +0530 IST