Check if Queue Item has been postponed

Hi @ConorSmalley

Actually, there is a postpone value when adding a queue item:

Postpone - The date after which the queue item may be processed. This property is a criterion for the prioritization of queue items, alongside Priority and Due Date . This property can be filled in with relative dates such as DateTime.Now.AddHours(2) , DateTime.Now.AddDays(10) and DateTime.Now.Add(New System.TimeSpan(5, 0, 0, 0)) . Additionally, you can use the US notation to add an exact time, such as 1 2/10/2017 07:40:00 . Automatically correcting this date is available. For example, if you write 8 9 2018 9:0 , it is automatically transformed to 08/09/2018 09:00:00 .

2 Likes