connector needs Date/time in yyyyMMddTHH:mm:ss+0000 format
Hi all,
I am building another connector which needs date formatted <yyyyMMddTHH:mm:ss+0000>
The year as a 4-digit decimal number including century, followed by the month as a decimal number with a range of 01–12, followed by the day of the month as a decimal number with a range of 01–31, followed by a character T, followed by the hour as a decimal number using a 24-hour clock with a range of 00–23, followed by the minute as a decimal number with a range of 00–59, followed by the second as a decimal number with a range of 00–60, followed by the timezone as hours offset from GMT. An example timestamp would be 20130703T19:38:41+0000.
I can get the date but not in the correct format.
Can anyone help please.
Thanks
Best Answer
-
Hi,
This is assuming you want the current date and time:
var date = new Date();
var year = date.getYear()+1900;
var month = (date.getMonth() < 10)? '0' + date.getMonth() : date.getMonth();
var day = (date.getDate() < 10)? '0' + date.getDate() : date.getDate();
var hours = (date.getHours() < 10)? '0' + date.getHours() : date.getHours();
var minutes = (date.getMinutes() < 10)? '0' + date.getMinutes() : date.getMinutes();
var seconds = (date.getSeconds() < 10)? '0' + date.getSeconds() : date.getSeconds();
var timezone = date.getTimezoneOffset();var formattedDate = year + '' + month + '' + day + 'T' + hours + ':' + minutes + ':' + seconds + '' + timezone;
console.log(formattedDate);
Let me know how you go
Cheers
Eric
0
Answers
-
Hi, great thanks. The timezone offset is coming back as -60 instead of -0060 but I can hard code that. Otherwise great thanks
0
Categories
- 7.7K All Categories
- 3 Connect
- 919 Connectors
- 244 Workbench
- 477 Transform
- 1.8K Magic ETL
- 60 SQL DataFlows
- 446 Datasets
- 38 Visualize
- 198 Beast Mode
- 2K Charting
- 8 Variables
- 1 Automate
- 348 APIs & Domo Developer
- 82 Apps
- Workflows
- 14 Predict
- 3 Jupyter Workspaces
- 11 R & Python Tiles
- 241 Distribute
- 59 Domo Everywhere
- 241 Scheduled Reports
- 15 Manage
- 36 Governance & Security
- 27 Product Ideas
- 1.1K Ideas Exchange
- Community Forums
- 14 Getting Started
- 1 Community Member Introductions
- 49 Community News
- 18 Event Recordings
- 579 日本支部