Welcome to the doBoard API reference.
This API allows you to interact with your organization's data programmatically — including projects, tasks, time tracking, comments, and more. It is designed for use in integrations, internal tools, automation scripts, and third-party applications.
All endpoints require authentication and support both GET and POST requests. The API is organized by feature groups and follows a consistent URL pattern.
Base URL Format:
https://api.doboard.com/{account_id}/{method_name}
Where{account_id}
is the numeric ID of the organization.
Endpoint | Method(s) | Description |
---|---|---|
/project_get |
GET , POST |
Retrieve a list of projects with filters and pagination |
/project_add |
GET , POST |
Create a new project |
/project_update (planned) |
GET , POST |
Update existing project information |
Endpoint | Method(s) | Description |
---|---|---|
/task_get (planned) |
GET, POST |
Retrieve tasks for a project |
/task_add (planned) |
GET, POST |
Add a new task |
/task_update (planned) |
GET, POST |
Update task details or status |
Endpoint | Method(s) | Description |
---|---|---|
/comment_get (planned) |
GET, POST |
Retrieve comments for a task or project |
/comment_add (planned) |
GET, POST |
Add a new comment |
/comment_update (planned) |
GET, POST |
Update an existing comment |