diff --git a/packages/nodes-base/nodes/Coda/GenericFunctions.ts b/packages/nodes-base/nodes/Coda/GenericFunctions.ts index a993c6c2c9124..e2cdf6b8a8678 100644 --- a/packages/nodes-base/nodes/Coda/GenericFunctions.ts +++ b/packages/nodes-base/nodes/Coda/GenericFunctions.ts @@ -20,7 +20,10 @@ export async function codaApiRequest( const credentials = await this.getCredentials('codaApi'); let options: OptionsWithUri = { - headers: { Authorization: `Bearer ${credentials.accessToken}` }, + headers: { + Authorization: `Bearer ${credentials.accessToken}`, + 'User-Agent': 'n8n', + }, method, qs, body,