latestOpenAPI 3.0.32026-08-224982,0272.8 MB

e445c15e5bee

Policy Builder

List conditions for scope

Lists all conditions for a given scope.

get/api/policy/v1/enterprises/{enterpriseId}/scopes/{scopeId}/conditions

Path parameters

enterpriseIdstring required

Your Enterprise Id.

scopeIdstring required

The id of the scope.

Response

All available Filtering Conditions for a scope.

Example response

{
  "conditions": [
    {
      "name": "wallet.type",
      "label": "Wallet Type",
      "description": "Allows creating a condition based on the Wallet Type",
      "status": "ACTIVE",
      "parameters": [
        {
          "name": "walletType",
          "label": "Type",
          "description": "The Wallet Type",
          "values": [
            {
              "label": "Custodial Wallet",
              "description": "A custodial wallet"
            }
          ]
        }
      ]
    }
  ]
}