Workspace · workspace.show
GET/workspace/{id}workspace.show
Get a workspace
GET /workspace/{id} is part of the Workspace group. Its parameters and response shape below are generated from the live OpenAPI document.
- Base URL
- https://api.redirhub.com/v1
- Auth
- Bearer token
- Idempotent
- Yes
- Returns
- application/json
The request
Call GET /workspace/{id} with your bearer token. The id path segment identifies the record.
# Get a workspace
curl "https://api.redirhub.com/v1/workspace/9f2a7c31-4b8e-4a02-9d1f-0c6b7e5a1d44" \
-H "Authorization: Bearer $REDIRHUB_TOKEN"Path parameters
| Parameter | Description |
|---|---|
| idRequiredstring |
The response
A 200 returns the record as JSON.
{
"id": "9f2a7c31-4b8e-4a02-9d1f-0c6b7e5a1d44",
"name": "Acme",
"role": "member",
"headurl": "string",
"personal": true,
"country": "string",
"pm_type": "string",
"pm_ending": "string",
"level": 1,
"email": "teammate@acme.com",
"billing_extra": "string",
"created_at": "2026-08-01T09:14:22Z",
"updated_at": "2026-08-01T09:14:22Z",
"meta": [
"string"
],
"summary": [
{
"category": "string",
"used": 1
}
]
}Status codes
200
SuccessThe requested workspace.
401
UnauthenticatedUnauthenticated
429
Too many requestsToo many requests
