API Tester Params —
squish.history.commentsGET
Returns a list of comment history entries matching any specified criteria (note that you must supply at least one criteria), ordered by modification date descending. This service will only return history for projects you are a manager of.
GET Parameters:
- prj: The short name of a squish project to search in (may specify
prjmore than once) - user: The ID or username of a user to search for (default=ANY)
- start: If specified, only return history on or after this date
- end: If specified, only return history on or before this date
- q: Return only comments containing this string (case-insensitive)
- raw: Passing a value of 1 will cause values to be returned unformatted (default=0)
- inactive: Passing a value of 1 will include history from inactive projects (only used if not specifying a project) (default=0)
URL:
https://api.squishlist.com/rest/?method=squish.history.comments
Result:
None yet.
squish.history.queryGET
Returns a list of field history entries matching any specified criteria (note that you must supply at least one criteria), ordered by modification date descending. This service will only return history for projects you are a manager of.
GET Parameters:
- prj: The short name of a squish project to search in (may specify
prjmore than once) - user: The ID or username of a user to search for (default=ANY)
- field: The ID, bug_field, or name of a variable to search on (may search cross-project if using bug_field or name and not already specifying a project) (default=ANY)
- start: If specified, only return history on or after this date
- end: If specified, only return history on or before this date
- distinct: If specified (either
bugoruser), return only the last history entry for each bug or user - raw: Passing a value of 1 will cause values to be returned unformatted (default=0)
- inactive: Passing a value of 1 will include history from inactive projects (only used if not specifying a project) (default=0)
- n: The maximum number of history entries to return (default=ALL)
URL:
https://api.squishlist.com/rest/?method=squish.history.query
Result:
None yet.