fetch_reports
Retrieve standup reports from Geekbot by specifying filters such as standup ID, user ID, or date ranges. Returns a JSON-formatted list of reports for easy integration and analysis.
Instructions
Fetch reports list from Geekbot
Args:
standup_id: int, optional, default is None The standup id to fetch reports for
user_id: int, optional, default is None The user id to fetch reports for
after: str, optional, default is None The date to fetch reports after in YYYY-MM-DD format
before: str, optional, default is None The date to fetch reports before in YYYY-MM-DD format
Returns:
str: Properly formatted JSON string of reports list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | ||
before | No | ||
standup_id | No | ||
user_id | No |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"default": null,
"title": "After",
"type": "string"
},
"before": {
"default": null,
"title": "Before",
"type": "string"
},
"standup_id": {
"default": null,
"title": "Standup Id",
"type": "integer"
},
"user_id": {
"default": null,
"title": "User Id",
"type": "integer"
}
},
"title": "fetch_reportsArguments",
"type": "object"
}