diff --git a/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts b/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts index ec64159b29..1744613a59 100644 --- a/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts +++ b/packages/nodes-base/credentials/GoogleSheetsOAuth2Api.credentials.ts @@ -22,5 +22,12 @@ export class GoogleSheetsOAuth2Api implements ICredentialType { type: 'hidden', default: scopes.join(' '), }, + { + displayName: + 'Make sure you enabled the following APIs & Services in the Google Cloud Console: Google Drive API, Google Sheets API. More info.', + name: 'notice', + type: 'notice', + default: '', + }, ]; } diff --git a/packages/nodes-base/credentials/GoogleSheetsTriggerOAuth2Api.credentials.ts b/packages/nodes-base/credentials/GoogleSheetsTriggerOAuth2Api.credentials.ts index 81b7845819..b5ee15101f 100644 --- a/packages/nodes-base/credentials/GoogleSheetsTriggerOAuth2Api.credentials.ts +++ b/packages/nodes-base/credentials/GoogleSheetsTriggerOAuth2Api.credentials.ts @@ -23,5 +23,12 @@ export class GoogleSheetsTriggerOAuth2Api implements ICredentialType { type: 'hidden', default: scopes.join(' '), }, + { + displayName: + 'Make sure you have enabled the following APIs & Services in the Google Cloud Console: Google Drive API, Google Sheets API. More info.', + name: 'notice', + type: 'notice', + default: '', + }, ]; }