Hi Power Automate community,
I am currently working on a flow that is almost complete, however I need to make a few changes.
The flow itself basically calls Jira's REST API, from the JSON I use the Select connector to filter out results, and then put this data into a CSV file.
The issue I am having is related to the "Created" field. The JSON for this can be seen below:
"created": "2021-04-19T09:58:13.469+0100"
When I use the following expression on my Select connector:
item().fields.created
I extracted the correct value of:
2021-04-19T09:58:13.469+0100
However, if possible I would only like the date and time to be extracted. With the last 9 characters not needed. Also if possible to replace the T with a space to improve the format and readability. My desired outcome can be seen below:
2021-04-19 09:58:13
Is there something I could add to my expression, or modification I could make to my expression that would allow me to achieve this?
Thanks in advance!