This message was deleted.
# help
s
This message was deleted.
l
Did you get any date/time back in the
created_time
field ? If not then you might need to enable response templating. Once you have done that you also might need to
-1 days
for the offset -
"created_time": "{{now offset='-1 days'}}"
Here is a full example for the
response
Copy code
"response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "jsonBody": {"created_time": "{{now offset='-1 days'}}"},
    "transformers": ["response-template"]
  }
a
ah I forgot the
"transformers": ["response-template"]
part in the response. Works now, thank you!
👍 1