Flow Designer OOB Objects
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2024 09:55 AM
Hi All,
I have started working with Flow Designer indepth and I was wondering if there is a documentation available for the objects available to be used in Flow Designer like "fd_data" object.
Thanks in advance
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2024 10:02 AM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2024 10:15 AM
Hi @Anubhav24 ,
Please refer to the ServiceNow documentation:
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks & Regards,
Sumanth Meda
Flow Designer data object optionsData Target Reference Syntax Example
Action input | fd_data.action_inputs.action-input-name | var task = fd_data.action_inputs.task; |
Flow variable | fd_data.flow_var.flow-variable-name | var shortDesc = fd_data.flow_var.short_description; |
Output of prior action, flow logic, or step | fd_data._output-target-step-number__output-target-name | var taskRecord = fd_data._2__create_task; |
Subflow input | fd_data.subflow_inputs.subflow-input-name | var reqItem = fd_data.subflow_inputs.requested_item; |
Trigger | fd_data.trigger.trigger-data-pill | var incident = fd_data.trigger.current; |