Skip to main content
GET
/
project-groups
/
{id}
Get a project group
curl --request GET \
  --url https://www.ruddr.io/api/workspace/project-groups/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "5f1d57a3-2214-4034-8002-fbb5f86c6502",
  "name": "MOU Group",
  "description": "Consulting and managed operations for enterprise clients.",
  "isActive": true,
  "createdAt": "2025-12-02T20:13:40.427Z",
  "client": {
    "id": "aa39afdb-e168-4956-b061-41c7c62e8c2e",
    "name": "Paul's Boutique"
  },
  "projects": [
    {
      "id": "5b6a9e5b-7c86-49aa-a0cf-f577cd50d421",
      "name": "AI for DevOps"
    },
    {
      "id": "4bf9f26f-29ff-4d91-821a-7dd07f271388",
      "name": "Assessment Services"
    }
  ]
}
A collection of related projects under a client, used for organizing and filtering.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The project group uuid.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the project group.

description
string | null

A description of the project group.

isActive
boolean

Whether the project group is active.

createdAt
string<date-time>

The timestamp when the object was created.

client
object

The client this project group belongs to.

projects
object[]

The projects in this project group.