cURL
curl --request GET \ --url https://productlane.com/api/v1/workspaces/{id}
{ "workspace": { "id": "<string>", "name": "<string>", "slug": "<string>", "domain": "<string>", "logo": "<string>", "primaryColor": "<string>", "secondaryColor": "<string>", "isPublished": true, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" }, "latestChangelog": { "id": "<string>", "title": "<string>", "date": "2023-11-07T05:31:56Z", "published": true } }
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