- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2025 07:45 PM
Can you please help me someone on below query.
I have a requirement to insert a row into the decision table via a scripting flow, where I have an input variable value and an output variable. The input variable references the schedule table, and the output variable references the group table.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2025 03:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2025 03:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2025 08:47 AM - edited 05-29-2025 08:48 AM
Thanks @Robert H
By unchecking its working fine
is it possible to update/delete existing decision row records ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2025 09:26 AM
Hello @elanrajad ,
Thanks for the update. Glad to hear that the solution is working.
Yes, you can update and delete the decision rows (a.k.a. questions) through the API as well, please review the updateQuestion() and deleteQuestion() methods in the documentation where you can also find code examples.
Regards,
Robert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2025 10:00 AM - edited 05-29-2025 10:07 AM
Hi @Robert H Thanks for your help
for update question record i have used below logic but getting response as failure.
same way for delete also not working i followed the service documentation still not able to dlete/update
can you please help here any config/code changes am missing ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2025 10:56 AM
Hello @elanrajad ,
As mentioned in the documentation the first parameter for the updateQuestion/deleteQuestion methods is the sys_id of the decision row you want to update/delete. It looks like you passed the sys_id of your decision table, which is only applicable for the createQuestions method.
Regards,
Robert