n8n-nodes-zoho
Version:
Zoho support for n8n
17 lines (16 loc) • 392 B
TypeScript
export type ZohoOAuth2ApiCredentials = {
authUrl: string;
accessTokenUrl: string;
clientId: string;
clientSecret: string;
scope: string;
authQueryParameters: string;
authentication: string;
redirectUri: string;
oauthTokenData: {
api_domain: string;
access_token: string;
refresh_token: string;
expires_in: number;
};
};