Skip to content

Get workspace features

GET/api/v1/workspaces/{workspace_slug}/features/

Get the features of a workspace

Path Parameters

workspace_slug:requiredstring

The workspace_slug represents the unique workspace identifier for a workspace in Plane. It can be found in the URL. For example, in the URL https://app.plane.so/my-team/projects/, the workspace slug is my-team.

Scopes

workspaces.features:read

Get workspace features
bash
curl -X GET \
  "https://api.plane.so/api/v1/workspaces/my-workspace/features/" \
  -H "X-API-Key: $PLANE_API_KEY" \
  # Or use -H "Authorization: Bearer $PLANE_OAUTH_TOKEN"
Response200
json
{
  "project_grouping": true,
  "initiatives": true,
  "teams": true,
  "customers": true,
  "wiki": true,
  "pi": true
}