Returns a list of tasks in a given project.
https://<space_id>.repsona.com/api/project/:projectId/task
Owner Admin Member
| Name | Type | Description |
|---|---|---|
projectId* | string | Project ID |
| Name | Type | Description |
|---|---|---|
| page | string | Starting page of the list. Minimum 1. |
| keywords | string | Keywords. Multiple can be specified, separated by commas. |
| tags | string | Tag ID. Multiple can be specified, separated by commas. |
| statuses | string | Status ID. Multiple can be specified, separated by commas. |
| milestones | string | Milestone ID. Multiple can be specified, separated by commas. |
| priorities | string | Priority ID. Multiple can be specified, separated by commas. |
| responsible_users | string | User ID of responsible person. Multiple can be specified, separated by commas. |
| ball_holding_users | string | User ID of the ball holder. Multiple can be specified, separated by commas. |
| due_date_gte | string | Start date of deadline |
| due_date_lte | string | End date of deadline |
| is_expired | enum (true, false) | Show expired |
| is_closed | enum (true, false) | Show closed |
{
"requestedBy": 1,
"project": 1,
"tasks": [
{
"tags": [
{
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "JavaScript",
"sortOrder": 0,
"color": "#2196F3",
"type": null,
"space": 1
}
],
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "Implement",
"sortOrder": 5,
"priority": 1,
"planned": null,
"actual": null,
"description": "",
"dueDate": 1672498800000,
"startDate": 1672498800000,
"space": 1,
"status": {
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "Todo",
"sortOrder": 0,
"isClosed": false,
"color": null,
"space": 1,
"project": 1
},
"parent": null,
"project": {
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "elephant-website",
"fullName": "Elephant website development project",
"purpose": "Investigating elephant ecology.",
"avatarUrl": "/dummy/project-icon1.png",
"productImageUrl": "",
"sortOrder": 0,
"free": true,
"isClosed": false,
"isPublic": false,
"extra": null,
"space": 1
},
"milestone": {
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "v1.37.0",
"dueDate": 1672498800000,
"isClosed": false,
"space": 1,
"project": 1
},
"responsibleUser": {
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "Joseff",
"fullName": "Joseff Thompson",
"avatarUrl": "/dummy/avatar4.png",
"billingStatus": "active",
"extra": null,
"space": 1,
"language": 1,
"timeZone": 100
},
"ballHoldingUser": {
"createdAt": 1672498800000,
"updatedAt": 1672498800000,
"id": 1746,
"name": "Joseff",
"fullName": "Joseff Thompson",
"avatarUrl": "/dummy/avatar4.png",
"billingStatus": "active",
"extra": null,
"space": 1,
"language": 1,
"timeZone": 100
},
"parents": []
}
]
}