Project Settings - Activity
Added by Mr. Doy over 10 years ago
Hi,
The current Enumerations REST API returns the "system" time tracking activities.
However in Redmine it is possible via Project settings to customize which activities are active for the project.
So my question is: is there a REST API we can use to list the time tracking activities for a specific project?
TIA.
Regards,
Doy
Replies (3)
RE: Project Settings - Activity - Added by Ruslan K about 1 year ago
Hi!
Did you find the answer to your question?
RE: Project Settings - Activity - Added by Holger Just about 1 year ago
You can get various optional data from the projects API by using the include
mechanism, including the time_entry_activities
of the project(s).
You can include the data by querying e.g. GET /projects.json?include=time_entry_activities
or GET /projects/my_project.json?include=time_entry_activities
See Rest_Projects for a complete API description.
RE: Project Settings - Activity - Added by Ruslan K about 1 year ago
Holger Just wrote in RE: Project Settings - Activity:
You can get various optional data from the projects API by using the
include
mechanism, including thetime_entry_activities
of the project(s).You can include the data by querying e.g.
GET /projects.json?include=time_entry_activities
orGET /projects/my_project.json?include=time_entry_activities
See Rest_Projects for a complete API description.
So simple. Thank you for explaining it to me.