Skip to content

Commit d535676

Browse files
ImTotemclaude
andcommitted
fix(workflow): use googleApi credential type for HTTP Request nodes
googleSheetsApi doesn't exist as predefined credential type. Google Service Account API type is googleApi. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b7c9e95 commit d535676

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workflows/pg_sheets_sync.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"method": "GET",
5858
"url": "=https://sheets.googleapis.com/v4/spreadsheets/{{ $env.GOOGLE_SHEETS_ID }}?fields=sheets.properties",
5959
"authentication": "predefinedCredentialType",
60-
"nodeCredentialType": "googleSheetsApi",
60+
"nodeCredentialType": "googleApi",
6161
"options": {}
6262
},
6363
"id": "get-sheet-ids",
@@ -139,7 +139,7 @@
139139
"method": "POST",
140140
"url": "=https://sheets.googleapis.com/v4/spreadsheets/{{ $env.GOOGLE_SHEETS_ID }}:batchUpdate",
141141
"authentication": "predefinedCredentialType",
142-
"nodeCredentialType": "googleSheetsApi",
142+
"nodeCredentialType": "googleApi",
143143
"sendBody": true,
144144
"specifyBody": "json",
145145
"jsonBody": "={{ JSON.stringify($json.body) }}",

0 commit comments

Comments
 (0)