Skip to content

Get workspace features

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

Get the features of a workspace

Path Parameters

slug:requiredstring

Workspace slug

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
}