Dida365Dida365 Open API
GET/open/v1/project/{projectId}/data
Get Project With Data
Retrieve a project with all its associated data including tasks and columns
Use OAuth 2.0 to manage Dida365 projects, tasks, comments, tags, focus records, countdowns, habits, and check-ins.
Request
- operationId
getProjectWithData- Server
https://api.dida365.com- Authentication
- OAuth2
Request parameters
projectId
pathstringrequired
Project identifier
69a850f41c20d2030e148fdf
Responses
200
ProjectDataapplication/json
OK
Properties: projecttaskscolumns
401
unknown
Unauthorized
403
unknown
Forbidden
404
unknown
Not Found
{
"project": {
"id": "6226ff9877acee87727f6bca",
"name": "project name",
"color": "#F18181",
"sortOrder": 0,
"closed": false,
"groupId": "6436176a47fd2e05f26ef56e",
"viewMode": "list",
"permission": "write"
},
"tasks": [
{
"id": "63b7bebb91c0a5474805fcd4",
"projectId": "6226ff9877acee87727f6bca",
"title": "Task Title",
"isAllDay": true,
"completedTime": "2019-11-13T03:00:00+0000",
"content": "Task Content",
"desc": "Task Description",
"dueDate": "2019-11-13T03:00:00+0000"
}
],
"columns": [
{
"id": "column-1",
"projectId": "project-1",
"name": "Column Name",
"sortOrder": 0
}
]
}