Flow Payload step date format
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 04:10 PM
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2024 11:05 PM
Hi @CV1
From which action is the data pill for date is being generated ? If possible, can you please share a snip of your action with all the steps listed ?
We need to do the transformation on the step above the Payload Builder Step and then pass it on.
Thanks & Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2024 06:28 AM - edited 01-25-2024 07:52 AM
Hi @Amit Verma,
The pill is from input table(project)
I was able to achieve this by :
var gd = new GlideDate();
object.trandate = gd.getByFormat("MM/dd/YYYY");
Thanks