We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 492b591 commit a5abc82Copy full SHA for a5abc82
1 file changed
sim/app/api/schedules/execute/route.ts
@@ -233,6 +233,10 @@ export async function GET(req: NextRequest) {
233
// Add workflowId to the input for OAuth credential resolution
234
const input = {
235
workflowId: schedule.workflowId,
236
+ // Add _context with workflowId to ensure OAuth token resolution works properly
237
+ _context: {
238
+ workflowId: schedule.workflowId
239
+ }
240
}
241
242
// Process the block states to ensure response formats are properly parsed
0 commit comments