The following is working:
responses/desc/50000/1/1525756206/json?X-apikey=542c0603951a208c4be688002d36f48808c40116174
But not this:
responses/desc/50000/1/@{formatDateTime(adddays(utcnow(), -6), '%a %b %d %H:%M:%S +0000 %Y')}/json?X-apikey=542c0603951a208c4be688002d3c40116174
Even this is not working:
responses/desc/50000/1/@{formatDateTime(adddays(utcnow(), -6), '%s')}/json?X-apikey=542c0603951a208c4be688002d3c40116174
So it is
@{formatDateTime(adddays(utcnow(), -6), '%a %b %d %H:%M:%S +0000 %Y')}
vs
1525756206
vs
@{formatDateTime(adddays(utcnow(), -6), '%s')}
Can anybody help me here? I have been stuck here for a couple of days. How to calculate or use seconds in data factory?
Basically when I am using @{formatDateTime(adddays(utcnow(), -6), '%a %b %d %H:%M:%S +0000 %Y')}
, It just ignore the filters/tag in the URL.