# List

Launch stage: GA

`GET /api/2.0/secrets/scopes/list`

Lists all secret scopes available in the workspace.

 Example response:

 .. code::

    {
        "scopes": [{
            "name": "my-databricks-scope",
            "backend_type": "DATABRICKS"
        },{
            "name": "mount-points",
            "backend_type": "DATABRICKS"
        }]
    }

 Throws ``PERMISSION_DENIED`` if the user does not have permission to make this API call.

API scopes: secrets

## Returns

Returns a list of SecretScope objects.

## Response

```json
{
  "scopes": [
    {
      "name": "string",
      "backend_type": "string",
      "keyvault_metadata": {}
    }
  ]
}
```

