Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Is there a way, or a service to get the initial creation date/time of a thing ?
Orhan
Solved! Go to Solution.
Hi Orhan,
You can do it this way:
var confChanges = Things["yourThingName"].GetConfigurationChangeHistory();
confChanges.Filter({ changeAction: "CREATE"});
var creationDate = confChanges.rows[0].timestamp;
Best Regards,
Carles.
Hi Orhan,
You can do it this way:
var confChanges = Things["yourThingName"].GetConfigurationChangeHistory();
confChanges.Filter({ changeAction: "CREATE"});
var creationDate = confChanges.rows[0].timestamp;
Best Regards,
Carles.
Thanks a lot ! It worked..
Regards,
Orhan