GuideLab API

List production rooms

Retrieves a paginated list of production rooms for the current lab. Supports filtering by active status and search by name.

GET
/production/rooms

Retrieves a paginated list of production rooms for the current lab. Supports filtering by active status and search by name.

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
search?string
page?integer
Range0 < value
Default1
limit?integer
Range0 < value <= 100
Default50

Response Body

application/json

curl -X GET "https://example.com/production/rooms"
{  "rooms": [    {      "id": "string",      "labId": "string",      "name": "string",      "description": "string",      "color": "string",      "icon": "string",      "layoutType": "default",      "sortOrder": 0,      "isActive": true,      "createdAt": "string",      "updatedAt": "string"    }  ]}
Empty