GET/projects/api/v3/milestones/metrics/deadlines.json
Get milestones by due date in a time range
Count the number of milestones on each deadline date. Only the milestones that the logged-in user can access will be included in the counting.
Request Examples
Example Request
GET
/projects/api/v3/milestones/metrics/deadlines.jsoncurl --request GET \ --url https://{site_name}.teamwork.com/tags.json
Responses
- Code
- 200
- Type
- object
- Schema
- Description
- 200 OK
MilestoneMetricDeadlinesResponse contains information about a group of deadlines.
- Code
- 400
- Type
- object
- Schema
- Description
- 400 Bad Request
ErrorResponse defines how []Error should be marshaled to JSON.
200 OK
MilestoneMetricDeadlinesResponse
{
"data": [
{
"date": "string",
"value": 0
}
]
}