- Get started
- Changelog
- Workspace
- Task Manager
- Portfolio
- Project
- Board
- BoardColumn
- Task
- Locations
- Attachments
- Time Entries
- Watchers
- Assignee
- Timer
- Get tasksGET
- Create taskPOST
- Get one task infoGET
- Update a taskPUT
- Delete taskDELETE
- Complete taskPOST
- Un complete taskPOST
- Change boardPOST
- Change board columnPOST
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Contacts
- Currencies
- User
- Attachments
Get tasks
GET
https://api.weeek.net/public/v1/tm/tasks
Task
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
day
string
optional
userId
string
optional
projectId
integer
optional
completed
boolean
optional
boardId
integer
optional
boardColumnId
integer
optional
type
string
optional
priority
integer
optional
tags
array[string]
optional
search
string
optional
perPage
integer
optional
offset
integer
optional
sortBy
enum<string>
optional
-name
Allowed values:
nametypeprioritydurationoverduecreateddatestart
startDate
string
optional
endDate
string
optional
all
boolean
optional
completed
parameter is ignoredResponses
🟢200OK
application/json
Body
success
boolean
optional
tasks
array[object (Task) {28}]
optional
id
integer
optional
parentId
integer | null
optional
title
string
optional
description
string | null
optional
duration
integer | null
optional
overdue
integer
required
type
enum<string>
optional
Allowed values:
actionmeetcall
priority
integer | null
optional
1 - Medium
2 - High
3 - Hold
>= 0<= 3
isCompleted
boolean
optional
isDeleted
boolean
required
authorId
string
optional
assignees
array[string] | null
optional
locations
array[object (TaskLocation) {3}]
required
image
string | null
optional
isPrivate
boolean
optional
startDate
string <date> | null
optional
Y-m-d
formatstartDateTime
string <date-time> | null
optional
dueDate
string <date> | null
optional
Y-m-d
formatdueDateTime
string <date-time> | null
optional
createdAt
string <date-time>
required
updatedAt
string <date-time>
required
tags
array[integer]
optional
subscribers
array[string]
optional
subTasks
array[integer]
optional
workloads
array [object {7}]
optional
timeEntries
array[object (Time entry) {6}]
required
customFields
array[object (CustomFieldValue) {6}]
optional
attachments
array[object (Attachment) {7}]
optional
hasMore
boolean
optional
Example
{
"success": true,
"tasks": [
{
"id": 0,
"parentId": 0,
"title": "string",
"description": "string",
"date": "string",
"time": "string",
"duration": 60,
"type": "action",
"priority": 0,
"isCompleted": true,
"isDeleted": false,
"authorId": "string",
"assignees": [],
"boardId": 0,
"boardColumnId": 0,
"projectId": 0,
"image": "string",
"isPrivate": true,
"dateStart": "2019-08-24",
"dateEnd": "2019-08-24",
"timeStart": "14:15:22Z",
"timeEnd": "14:15:22Z",
"tags": [
0
],
"subscribers": [
"string"
],
"workloads": [
{
"id": "bc92d5f2-3aaf-49cc-8010-5007ced66ea6",
"userId": "24d20bfa-bc7e-471e-8c17-a199734532dc",
"type": 2,
"date": "05.10.2022",
"duration": 60,
"workStartAt": null,
"workEndAt": null
}
]
}
],
"hasMore": true
}
Modified at 2025-06-05 14:29:57