---
title: "Get policy recommendations"
method: GET
path: "/api/policy/v1/enterprises/{enterpriseId}/recommendations"
tags: ["Policy Builder"]
---

# Get policy recommendations

`GET /api/policy/v1/enterprises/{enterpriseId}/recommendations`

Returns policy recommendations for an enterprise.

**Authorization:** Caller must have read-policy permissions, be an admin, or be a member of the enterprise.

## Path parameters

- `enterpriseId` string, required

## Query parameters

- `limit` integer

## Response `200`

A list of policy recommendations for the enterprise.

- PolicyRecommendationResponse — Response containing policy recommendations for an enterprise.
  - `enterpriseId` string, required — The enterprise ID.
  - `recommendations` PolicyRecommendation[], required — List of policy recommendations.
    - `recommendationId` string, required — Unique identifier for this recommendation.
    - `adoptionPercentage` number, double, required — Adoption rate for this policy pattern.
    - `confidenceScore` number, double, required — Confidence score for this recommendation (0.0 to 1.0).
    - `explanation` string, required — Human-readable explanation of why this policy is recommended.
    - `description` string — Additional description of the recommendation.
    - `source` 'PEER_POPULAR' | 'PARAMETER_DRIFT' | 'DEFAULT_TEMPLATE', required — The source of the recommendation. * `PEER_POPULAR` - Based on popular adoption among enterprises. * `PARAMETER_DRIFT` - Based on differences from common parameter configurations. * `DEFAULT_TEMPLATE` - Based on a default best-practice template.
    - `enterpriseAdoptionCount` integer, required — Number of enterprises that have adopted this policy pattern.
    - `totalPeers` integer, required — Total number of enterprises considered.
    - `title` string, required — Short title for the recommendation.
    - `template` RecommendationTemplate, required — The recommended policy rule template with scope, touchpoint, conditions, and actions.
      - `name` string, required — Name of the template.
      - `scopeCondition` RecommendationScopeCondition, required — The scope condition for the recommended policy rule.
        - `name` string, required — Name of the scope condition.
        - `label` string, required — Human-readable label.
        - `description` string, required — Description of the scope condition.
        - `status` 'ACTIVE' | 'INACTIVE', required — Status of the scope condition.
        - `parameters` unknown[] — Parameter definitions for the scope condition.
          - unknown
        - `adminOnly` boolean — Whether this scope condition is admin-only.
        - `bitgoManaged` boolean — Whether this scope condition is managed by BitGo.
      - `touchpoint` RecommendationTouchpoint, required — The touchpoint (trigger point) for the recommended policy rule.
        - `id` string, required — Unique identifier of the touchpoint.
        - `name` string, required — Name of the touchpoint.
        - `status` 'ACTIVE' | 'INACTIVE', required — Status of the touchpoint.
        - `label` string, required — Human-readable label for the touchpoint.
        - `description` string, required — Description of the touchpoint.
        - `adminOnly` boolean, required — Whether this touchpoint is admin-only.
      - `touchpointConditions` RecommendationConditionEntry[], required — List of conditions for the policy rule.
        - `condition` RecommendationConditionMeta, required — Metadata for a recommended condition.
          - `name` string, required — Name of the condition.
          - `label` string, required — Human-readable label.
          - `description` string, required — Description of the condition.
          - `status` 'ACTIVE' | 'INACTIVE', required — Status of the condition.
          - `adminOnly` boolean — Whether this condition is admin-only.
          - `parameters` RecommendationParameterDef[], required — Parameter definitions for the condition.
            - `name` string, required — Name of the parameter.
            - `label` string, required — Human-readable label.
            - `description` string, required — Description of the parameter.
            - `type` string, required — Type of the parameter value.
            - `required` 'ALWAYS' | 'OPTIONAL' | 'ONE_OR_MORE', required — Whether the parameter is required.
            - `allowMultiple` boolean, required — Whether multiple values can be provided.
            - `values` unknown[] — List of valid values (empty if free-form).
              - …
          - `bitgoManaged` boolean, required — Whether this condition is managed by BitGo.
        - `conditionParameters` object — Recommended parameter values for the condition.
      - `touchpointActions` RecommendationActionEntry[], required — List of actions for the policy rule.
        - `action` RecommendationActionMeta, required — Metadata for a recommended action.
          - `name` string, required — Name of the action.
          - `label` string, required — Human-readable label.
          - `description` string, required — Description of the action.
          - `status` 'ACTIVE' | 'INACTIVE', required — Status of the action.
          - `adminOnly` boolean, required — Whether this action is admin-only.
          - `parameters` RecommendationParameterDef[], required — Parameter definitions for the action.
            - `name` string, required — Name of the parameter.
            - `label` string, required — Human-readable label.
            - `description` string, required — Description of the parameter.
            - `type` string, required — Type of the parameter value.
            - `required` 'ALWAYS' | 'OPTIONAL' | 'ONE_OR_MORE', required — Whether the parameter is required.
            - `allowMultiple` boolean, required — Whether multiple values can be provided.
            - `values` unknown[] — List of valid values (empty if free-form).
              - …
          - `bitgoManaged` boolean, required — Whether this action is managed by BitGo.
        - `actionParameters` object — Recommended parameter values for the action.
      - `scopeConditionParameters` object, nullable — Parameter values for the scope condition.
      - `touchpointConditionsOperator` 'AND' | 'OR' — Logical operator for combining multiple conditions or actions within a clause.
      - `touchpointActionsOperator` 'AND' | 'OR' — Logical operator for combining multiple conditions or actions within a clause.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — The specified resource was not found
- `500` — Server Error - Transient error please try again

---

[API](https://skmtc.net/bitgo/apis/bitgo-api.md) · [All operations](https://skmtc.net/bitgo/apis/bitgo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bitgo/bitgo-api/revisions/e445c15e5bee/schema)
