Skip to main content
GET
/
project-tasks
List project tasks
curl --request GET \
  --url https://www.ruddr.io/api/workspace/project-tasks \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "a3f8c214-7b92-4e61-9d05-1c83e6f2a047",
      "name": "Backend API Integration",
      "notes": "Implement REST endpoints for the client portal module.",
      "order": 16384,
      "position": 16384,
      "statusId": "in_progress",
      "start": "2026-02-01",
      "end": "2026-03-31",
      "isBillable": true,
      "lockTime": false,
      "capHours": true,
      "capAssignedHours": false,
      "code": "DEV-042",
      "forAssignedOnly": false,
      "requireNotes": false,
      "recordStatusId": "active",
      "budgetedHours": 120.5,
      "budgetedServicesRevenue": 18075,
      "createdAt": "2026-01-10T14:22:35.491Z",
      "parent": {
        "id": "7d1b4f93-2a85-4c70-8e16-5b29d4c7e831",
        "name": "Phase 2 Development"
      },
      "project": {
        "id": "f52e9a17-3c64-4b88-a701-8d94bc2f5e63",
        "name": "Acme Portal Redesign",
        "client": {
          "id": "2b7d8e41-9f53-4a26-b8c2-6e1f5d3a9074",
          "name": "Acme Company, Inc."
        }
      },
      "roles": [
        {
          "id": "0e011217-4925-4931-b2ee-257da8d9f0fe",
          "name": "Senior Developer",
          "hours": 80
        },
        {
          "id": "c4a9f312-8b57-4d93-a625-1e7f2b8d4c06",
          "name": "QA Engineer",
          "hours": 40.5
        }
      ],
      "tags": [
        {
          "id": "91b3e724-5f18-4a92-8c37-2d6e4f1b5a89",
          "name": "Backend"
        },
        {
          "id": "3e8f1d62-7a45-4b19-9c28-6f2e5d4a3b17",
          "name": "High Priority"
        }
      ],
      "projectMembers": [
        {
          "id": "5c2d9f84-1b67-4e38-a915-7d3c8e2f6a41",
          "member": {
            "id": "b8f4e293-6d17-4a85-9c42-3e7f1d5b2a68",
            "name": "Jordan Rivera"
          },
          "hours": null
        }
      ]
    }
  ],
  "hasMore": true
}
A work item or activity that helps complete a project.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

startingAfter
string

A cursor ID (uuid) used to request the next page of results. If not provided, defaults to the first page of results.

endingBefore
string

A cursor ID (uuid) used to request the previous page of results. Is mutually exclusive with startingAfter.

limit
string

The maximum number of results to be returned. Can be any number from 1 to 100. Defaults to 10, if not provided.

projectId
string

A project ID (uuid) used to filter objects for a specific project.

code
string

A project task code to filter project tasks by code.

name
string

Filter by project task name when it exactly matches the provided keyword.

nameContains
string

Filter by project task name when it contains the provided keyword.

nameStartsWith
string

Filter by project task name when it starts with the provided keyword.

nameEndsWith
string

Filter by project task name when it ends with the provided keyword.

Response

200

results
object[]
hasMore
boolean

Whether there are more results available after this page.