Get time logs list filtered by query parameters. The result of the request is displayed page by page (see details in the constraints of the parameters)
| Name | Type | Constraints | Description |
|---|---|---|---|
| fromrequired | string | Date from, format YYYY-MM-DD Example: 2025-12-01 | |
| torequired | string | Date from, format YYYY-MM-DD Example: 2025-12-30 | |
| tag_ids | string | Tag ids, comma-separated Example: 234,2342,6435 | |
| user_ids | string | User ids, comma-separated Example: 34,345,345345 | |
| group_ids | string | User group ids, comma-separated Example: 1,2,3 | |
| space_ids | string | Space ids, comma-separated Example: 453,238945,2 | |
| board_ids | string | Board ids, comma-separated Example: 654,24,243 | |
| column_ids | string | Column ids, comma-separated Example: 624,12,23 | |
| card_ids | string | Card ids, comma-separated Example: 624,12,23 | |
| visible_column_ids | string | Visible column ids, comma-separated | |
| limit | integer | Default: 100 Max: 200 | Maximum number of records; the limit cannot be extended |
| offset | integer | Number of records to skip | |
| condition | integer | Number of records to skip | |
| group_by | integer | Options to group by. 0 - no groups, 1 - by user, 2 - by card | |
| time_precision | integer | Time precision for specified time_unit | |
| time_unit | integer | Time unit | |
| with_daily_distribution | integer | Returns data daily when grouped by user or card | |
| only_general_sum | integer | Returns general sum time spent |
| Description | Response type | Example |
|---|---|---|
| Success | Object |
| Name | Type | Description |
|---|---|---|
| updated | string | Last update timestamp |
| created | string | Create date |
| id | integer | Card time log id |
| card_id | integer | Card id |
| user_id | integer | User id |
| role_id | integer | Role id, predefined role is: -1 - Employee |
| author_id | integer | Author id |
| updater_id | integer | Last updater id |
| time_spent | integer | Minutes to log |
| for_date | string | Log date |
| comment | null | string | Time log comment |
| role | object | Company user role info |
| user | object | User info |
| card | object | Card info |
| Description | Response type | Example |
|---|---|---|
| Validation error | Object |
| Name | Type | Description |
|---|---|---|
| message | string | Error message |
| Description | Response type | Example |
|---|---|---|
| Invalid token | String |
A schema has not been defined for this response code.
| Description | Response type | Example |
|---|---|---|
| Forbidden | Response body does not exist |
A schema has not been defined for this response code.
Query Parameters
1 curl --request GET \
2 --url 'https://example.kaiten.ru/api/latest/time-logs?' \
3 --header 'Accept: application/json' \
4 --header 'Content-Type: application/json'
5 Response
ClickTry It!to start a request and see the response here!