cURL
curl --request GET \ --url https://productlane.com/api/v1/workspaces/{id}
{ "workspace": { "id": "<string>", "name": "<string>", "domain": "<string>", "darkMode": true, "backgroundColor": "<string>", "darkModeBackgroundColor": "<string>", "textColor": "<string>", "darkModeTextColor": "<string>", "accentColor": "<string>", "darkModeAccentColor": "<string>", "accentTextColor": "<string>", "darkModeAccentTextColor": "<string>", "buttonTextColor": "<string>", "darkModeButtonTextColor": "<string>", "customDomain": "<string>", "logoLink": "<string>", "logoUrl": "<string>", "changelogPublic": true }, "latestChangelog": { "id": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "isDeleted": true, "version": 123, "date": "2023-11-07T05:31:56Z", "published": true, "title": "<string>", "archived": true, "imageUrl": "<string>", "projectId": "<string>", "workspaceId": "<string>", "notes": "<unknown>" } }
Fetch any given workspace with an ID. No authentication is required.
GET /api/v1/workspaces/ws_123456789
{ "workspace": { "id": "ws_123456789", "name": "Acme Corp", "slug": "acme-corp", "domain": "feedback.acme.com", "logo": "https://cdn.productlane.com/logos/acme.png", "primaryColor": "#3B82F6", "secondaryColor": "#1E40AF", "isPublished": true, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-15T10:30:00Z" }, "latestChangelog": { "id": "changelog_123", "title": "Dashboard Redesign Released", "date": "2024-01-15T00:00:00Z", "published": true } }
Successful response
Show child attributes