v1

latestOpenAPI 3.0.32026-08-0613775357.6 KB
subtasks

List subtasks

Returns the subtasks for the matching project assignment.

get/projects/{project_id}/assignments/{assignment_id}/subtasks

Query parameters

per_pageinteger

The maximum number of items to show per response page.

Example:100
pageinteger

The response page to return.

Example:2

Response

The subtasks for the matching project assignment.

Example response

{
  "paging": {
    "per_page": 100,
    "page": 1,
    "previous": "/api/v1/users?per_page=1000&page=1",
    "self": "/api/v1/users?per_page=1000&page=2",
    "next": "/api/v1/users?per_page=1000&page=3"
  },
  "data": [
    {
      "id": 6789012345,
      "assignment_id": 5612,
      "assignable_id": 1234,
      "description": "Assess risks",
      "updated_at": "2025-08-27T12:00:00Z",
      "created_at": "2025-08-27T12:00:00Z",
      "updated_by": 1234567
    }
  ]
}