Api
List the authenticated user's workspaces
Returns the workspaces the caller is a member of, ordered by name. Paginated via limit (default 20, max 100) and offset (default 0); total is the unpaginated count.
AuthorizationBearer <token>
A Supabase-issued OAuth user access token. On collection endpoints, pair with a Passo-Workspace header to pick a workspace.
In: header
Query Parameters
limit?integer
Range
-9007199254740991 <= value <= 9007199254740991offset?integer
Range
0 <= value <= 9007199254740991Response Body
application/json
curl -X GET "https://example.com/workspaces"{ "workspaces": [ { "id": "string", "name": "string", "slug": "string", "domain": "string", "archivedAt": "string", "createdAt": "string", "updatedAt": "string" } ], "total": -9007199254740991, "limit": -9007199254740991, "offset": -9007199254740991}