GuideLab API

List practice groups

Retrieve a paginated list of practice groups for the current lab. Optionally includes partnership counts and inactive groups. Lab only.

GET
/practice-groups

Retrieve a paginated list of practice groups for the current lab. Optionally includes partnership counts and inactive groups. Lab only.

Authorization

__Secure-guidelab-prod.session_token<token>

Production session cookie set for the guidelab.co domain by Better Auth

In: cookie

Query Parameters

includeInactive?||
Defaultfalse
includePartnershipCount?||
Defaulttrue
search?string
page?integer
Range0 < value
Default1
limit?integer
Range0 < value <= 100
Default50

Response Body

application/json

curl -X GET "https://example.com/practice-groups"
{  "data": [    {      "id": "string",      "labId": "string",      "name": "string",      "description": "string",      "useCustomExport": true,      "exportConfig": null,      "sortOrder": 0,      "isActive": true,      "createdAt": "string",      "updatedAt": "string",      "partnershipCount": 0    }  ],  "pagination": {    "page": 0,    "limit": 0,    "total": 0,    "totalPages": 0  }}
Empty
Empty
Empty
Empty