Skip to main content
GET
/
project-types
List project types
curl --request GET \
  --url https://www.ruddr.io/api/workspace/project-types \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "a3f1c2d4-7e89-4b56-a123-8d2e9f034c71",
      "name": "Internal Delivery",
      "isActive": true,
      "createdAt": "2025-09-18T14:25:35.149Z",
      "invoiceItem": {
        "id": "72761804-b01e-4c8f-8352-2fcde43261a8",
        "name": "Service"
      }
    }
  ],
  "hasMore": false
}
A classification that can be assigned to projects and used to filter reports.

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
integer<int32>

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

name
string

Filter by name when it exactly matches the provided keyword.

Response

200

results
object[]
hasMore
boolean

Whether there are more results available after this page.