Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Alteryx API Date Format

Link86
8 - Asteroid

Hi,

I am pulling from the Alteryx Admin API to obtain a list of workflow. I am getting a strange date output for uploadDate: /Date(1469209240118)/. Does anyone know how to convert this to something that is human readable?

 

Thanks in advance.

2 REPLIES 2
Luke_C
17 - Castor

Hi @Link86 

 

It looks like this is unix time, likely milliseconds since 1970, I tried the below and came out with 7/22/2016. Is this a date you'd expect?

 

datetimeadd('1970-01-01', ([Field1]/1000),'seconds')

 

Luke_C_0-1623338803979.png

 

 

 

Link86
8 - Asteroid

Awesome! Yes this is exactly the correct date. Thank you.

Labels