I need to get the time created of a queue item in Orchestrator.
According to the Swagger definitions for GET[/odata/QueueItems({key})] the CreationTime is the key that I am looking for. I can make it working by posting the GET request and then extract the required value.
But is there not an easier way around this? Adding .CreationTime to the queue item variable does not work.
hi, @jacchr Currently, the easiest way to get the CreationTime of a queue item is by using the Orchestrator API endpoint GET /odata/QueueItems({key}), as you found. The queue item variable in Studio doesn’t expose CreationTime directly.
If you want to avoid API calls, you can store the CreationTime yourself when adding items to the queue (e.g., as part of the specific content).
But out of the box, the built-in activities won’t give you CreationTime directly without using the API.