Logo

Dyzo API

v2.0.0

Screenshots

Complete Dyzo API Documentation - Project Management, Team Collaboration & Time Tracking Platform

API Overview

Capabilities and features

Manage employee screenshots for time tracking.

Key Features

Upload screenshots
View screenshot history
Delete screenshots
Bulk upload
POST
/screenshot/
200 OK

Upload Screenshot

Upload a single screenshot.

JSONRequest Body
1{
2 "task_id": 250,
3 "employee_id": 10,
4 "tasklog_id": 1001,
5 "image": "<base64_image>"
6}
POST
/screenshot/bulk/create/
200 OK

Bulk Upload Screenshots

Upload multiple screenshots at once.

JSONRequest Body
1{
2 "screenshots": [...]
3}
GET
/screenshot/task/{task_id}/employee/{employee_id}/
200 OK

Get Task Screenshots

Get all screenshots for a task and employee.

DELETE
/screenshot/{screenshot_id}/
200 OK

Delete Screenshot

Delete a screenshot.

DELETE
/delete-screenshots/{employee_id}/{date}/
200 OK

Delete Employee Screenshots for Date

Delete all screenshots for an employee on a specific date.