Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add event name check in sfmc #2841

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 17 additions & 11 deletions src/v0/destinations/sfmc/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,17 +224,23 @@ const responseBuilderSimple = async (message, category, destination) => {
throw new ConfigurationError('Creating or updating contacts is disabled');
}

if (category.type === 'track' && hashMapExternalKey[message.event.toLowerCase()]) {
return responseBuilderForInsertData(
message,
hashMapExternalKey[message.event.toLowerCase()],
subDomain,
category,
authToken,
'track',
hashMapPrimaryKey[message.event.toLowerCase()] || CONTACT_KEY_KEY,
hashMapUUID[message.event.toLowerCase()],
);
if (category.type === 'track') {
if (!message.event) {
throw new InstrumentationError('Event name is required');
}

if (hashMapExternalKey[message.event.toLowerCase()]) {
return responseBuilderForInsertData(
message,
hashMapExternalKey[message.event.toLowerCase()],
subDomain,
category,
authToken,
'track',
hashMapPrimaryKey[message.event.toLowerCase()] || CONTACT_KEY_KEY,
hashMapUUID[message.event.toLowerCase()],
);
}
}

throw new ConfigurationError('Event not mapped for this track call');
Expand Down
Loading