mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
fix(Customer.io Node): Fix api endpoint when using EU region (#7485)
Fixes #7484
This commit is contained in:
@@ -32,7 +32,13 @@ export async function customerIoApiRequest(
|
||||
const region = credentials.region;
|
||||
options.url = `https://${region}/api/v1${endpoint}`;
|
||||
} else if (baseApi === 'api') {
|
||||
options.url = `https://api.customer.io/v1/api${endpoint}`;
|
||||
const region = credentials.region;
|
||||
// Special handling for EU region
|
||||
if (region === 'track-eu.customer.io') {
|
||||
options.url = `https://api-eu.customer.io/v1/api${endpoint}`;
|
||||
} else {
|
||||
options.url = `https://api.customer.io/v1/api${endpoint}`;
|
||||
}
|
||||
} else if (baseApi === 'beta') {
|
||||
options.url = `https://beta-api.customer.io/v1/api${endpoint}`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user