-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues API #19
Comments
Multifilter would be awesome, but for simplicity, a simple filter could be used. |
I have two levels of granularity returned from issueAPI: brief and detailed.
Makes sense? |
+1 |
Issues can be filtered using composite filter. Example of filter (prettyprinted here for brevity):
When sending the filter, note that it must be URL encoded (for quick manual encode/decode use this tool or any of the thousand similar ones) The filter above will be encoded as:
Full API call with the filter for reference:
The result is a JSON array of simple issue details:
|
Issue Workflow To update status of issue, POST to:
This operation is only allowed for users in role 'WORKER' (has to be assigned via Redmine admin UI)
|
Added LocalDate based filter. It selects all issues created between two dates (no time), both inclusive.
Note that the date is in ISO format, year first, then month, day last. |
Issues API allows new issues to be created (reported by logged in users).
It also allows issues to be searched for and filtered. What filters do we want/need? Ideas:
Do we want combination of above filters to be possible?
The text was updated successfully, but these errors were encountered: