- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hello,
I don't know if that help, but there is some documentation about using dates in Campaign:
https://experienceleague.adobe.com/developer/campaign-api/api/p-5.html
The example says
var query = NLWS.xtkQueryDef.create(
{queryDef: {schema: "nms:delivery", operation: "get",
select: {
node: {expr: "@lastModified"}
},
where: {
condition: {expr: "@id=123456"}
}
}}
)
var delivery = query.ExecuteQuery()
var lastModified = parseTimeStamp(delivery.$lastModified) // <-- parseTimeStamp returns a Date object
Best regards, Tobias