get_user_presences
Retrieve user presence data within a specified date range, aggregating daily and calculating totals for time tracking and project management insights.
Instructions
Get user presences within a date range with daily aggregation and total calculations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date in ISO 8601 format (YYYY-MM-DD) | |
startDate | Yes | Start date in ISO 8601 format (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "End date in ISO 8601 format (YYYY-MM-DD)",
"type": "string"
},
"startDate": {
"description": "Start date in ISO 8601 format (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}