Vivek
Vivek
NNovu
Created by Vivek on 3/17/2025 in #💬│support
Workflow transaction id availability
Will there be any restriction for generating transactionId apart from being unique? In terms of format, validation etc.
19 replies
NNovu
Created by Vivek on 3/17/2025 in #💬│support
Workflow transaction id availability
Yes this is definitely solves our problem but in this case we need to create logic for generating unique transactionId across workflow triggers. Is this correct? As we're also fetching this transactionId data to validate open info of in-app notification for a user too.
19 replies
NNovu
Created by Vivek on 3/17/2025 in #💬│support
Workflow transaction id availability
yes correct
19 replies
NNovu
Created by Vivek on 3/17/2025 in #💬│support
Workflow transaction id availability
import { workflow } from '@novu/framework';

workflow(
'my-workflow',
async ({ step, payload, subscriber }) => {
await step.inApp('send-in-app', async () => {
logger.info(`executing workflow ${name} for transaction ${<<transactionId>>}`);
return {
body: 'Hello there',
};
});
},
{
payloadSchema: z.object({
body: z.string(),
}),
name: 'My Workflow',
description: 'This is a workflow',
tags: ['business', 'critical'],
preferences: {
channels: {
inApp: { enabled: true },
},
},
}
);
import { workflow } from '@novu/framework';

workflow(
'my-workflow',
async ({ step, payload, subscriber }) => {
await step.inApp('send-in-app', async () => {
logger.info(`executing workflow ${name} for transaction ${<<transactionId>>}`);
return {
body: 'Hello there',
};
});
},
{
payloadSchema: z.object({
body: z.string(),
}),
name: 'My Workflow',
description: 'This is a workflow',
tags: ['business', 'critical'],
preferences: {
channels: {
inApp: { enabled: true },
},
},
}
);
19 replies
NNovu
Created by Vivek on 3/17/2025 in #💬│support
Workflow transaction id availability
- Workflow - we've created workflow in NodeJS similar to this - https://github.com/novuhq/examples/tree/main/novu-workflows/react/otp - where we're triggering steps as configured in workflow - before passing payload params to flow we need to log subscriber to transaction mapping to know that transaction which is triggered using API is flowing through workflow - Use cases - Debugging on triggerring workflow to executing - Logging transactionId along with workflow execution step id
19 replies
NNovu
Created by Vivek on 3/17/2025 in #💬│support
Workflow transaction id availability
I'm referring to this workflow code - https://docs.novu.co/framework/typescript/workflow
19 replies
NNovu
Created by Vivek on 3/17/2025 in #💬│support
Workflow transaction id availability
We use trigger API to execute workflow and it returns transactionId in response and we use SDK for workflow execution where we want to access this transaction id in that SDK so that we can log and reuse id wherever needed.
19 replies
NNovu
Created by Vivek on 1/30/2025 in #💬│support
Steps failure should stop whole flow under the same
@Pawan Jain do we have any timeline to get this fixed in both web and open source version?
7 replies
NNovu
Created by Vivek on 1/30/2025 in #💬│support
Steps failure should stop whole flow under the same
Thanks for the update. @Pawan Jain Let me know if you want any clarification on the issue.
7 replies
NNovu
Created by Vivek on 1/2/2025 in #💬│support
In-app and email not working in same workflow
@Pawan Jain do we have in timeline in place?
10 replies
NNovu
Created by Vivek on 1/2/2025 in #💬│support
In-app and email not working in same workflow
Yes it looks similar issue Is there anyway to resolve this issue for now? Yes we're creating workflow using @novu/framework currently.
10 replies
NNovu
Created by Vivek on 12/17/2024 in #💬│support
Dynamic Workflow Tags (for in app tabs)
Thanks @Pawan Jain for update.
6 replies
NNovu
Created by Vivek on 12/17/2024 in #💬│support
Dynamic Workflow Tags (for in app tabs)
Also tags from workflow API in node js like above is not working. No tags are coming in in-app notification.
6 replies
NNovu
Created by Vivek on 11/14/2024 in #💬│support
Integration API : check flag
@Pawan Jain thanks for quick response. I've verified working with API by removing check flag, but in that case even with wrong credential integration is getting created in the novu system. (which will not be useful for sending communication due to invalid details) So is there any way to find out incorrect credential programatically via response code or any other API calls to novu?
3 replies
NNovu
Created by Russ Salad on 10/9/2024 in #💬│support
Run docker localhost, configured API to serve on 3001 but WEB still hits 3000
10 replies
NNovu
Created by Pawan Jain on 2/2/2023 in #💬│support
how to send html content as value of email editor variable
Is this feature available now? How to use the same if it's available or what's current timeline for this feature to be available?
14 replies