Process instance start time from camunda REST endpoint

I am trying to ignore the tasks based on its start time but the REST endpoint processinstance is not returning the start time . i can see that information available in UI part of the camunda application.

Do we have any endopoint available in Rest api for returning the start time of process instance ?

Thanks,
Eapen John

Hi @eapen_eapen
I suggest you try the following REST API call - Get Process Instances | docs.camunda.org

GET /history/process-instance with ?unfinished=true if you’re looking for running instances. According to the documentation it returns startTime.

Thanks Alex , it worked

I appreciate the update @eapen_eapen. Please mark the answer as a solution to the issue. This way it will be visible to others that the question was answered.
Thanks!