Date Related QueryString Examples
Submitted this week:
project.id IN ('current project',2) AND tracker.id IN (2284) AND (submittedAt >= -0w AND submittedAt <= +0w).
Submitted this month:
project.id IN ('current project',2) AND tracker.id IN (2284) AND (submittedAt >= -0m AND submittedAt <= +0m).
Submitted between two dates:
project.id IN ('current project',2) AND tracker.id IN (2284) AND (submittedAt >= '2019-01-20 00:00:00' AND submittedAt <= '2019-01-26 23:59:59').
Submitted in the last 7 days:
project.id IN ('current project',2) AND tracker.id IN (2284) AND (submittedAt >= -7d AND submittedAt <= +0d).
Modified in this quarter:
project.id IN ('current project',2) AND tracker.id IN (2284) AND (modifiedAt >= -0q AND modifiedAt <= +0q)
Assigned in the last 30 days:
project.id IN ('current project',2) AND tracker.id IN (2284) AND (assignedAt >= -30d AND assignedAt <= +0d).
You can find more examples in our
Swagger API wiki documentation page.
How to create a tracker item with basic information
Examples of this end point are going to use the Task tracker of PTC’s Scrum