1

Date returned by twitter

"created_at": "Tue Sep 14 23:57:15 +0000 2021",

Desired Output

"created_at": "2021-09-14 23:57:15",
Imran Qamer
  • 2,253
  • 3
  • 29
  • 52

1 Answers1

3

Hi @Imran Qamer You can use this transformation:

%dw 2.0
output application/json
---
payload.created_at as DateTime {format: "E MMM dd HH:mm:ss Z yyyy"} as DateTime {format: "yyyy-MM-dd HH:mm:ss"}

enter image description here

Edgar
  • 194
  • 1
  • 12