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,
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 -
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
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 296 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 614 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 729 Beast Mode
- 53 App Studio
- 40 Variables
- 677 Automate
- 173 Apps
- 451 APIs & Domo Developer
- 45 Workflows
- 8 DomoAI
- 34 Predict
- 14 Jupyter Workspaces
- 20 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 121 Manage
- 118 Governance & Security
- Domo Community Gallery
- 32 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive