Skip to content

Commit

Permalink
Merge pull request #773 from Accenture/bugfix/744-interaction-matchin…
Browse files Browse the repository at this point in the history
…g-criteria-not-found30003

bugfix/#744: fix "Interaction matching criteria not found. 30003" during journey retrieve
  • Loading branch information
JoernBerkefeld authored Feb 24, 2023
2 parents 4a8f304 + 4a58ff6 commit 7b046c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/metadataTypes/Interaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ class Interaction extends MetadataType {
results.items.map(async (a) => {
try {
return await this.client.rest.get(
`${uri}key:${a[this.definition.keyField]}?extras=${extras}`
`${uri}key:${a[this.definition.keyField]}?extras=${extras}` +
`&versionNumber=${a.version}`
);
} catch (ex) {
// if we do get here, we should log the error and continue instead of failing to download all automations
Expand Down

0 comments on commit 7b046c3

Please sign in to comment.