# Get

Launch stage: GA

`GET /api/2.0/accounts/{account_id}/workspaces/{workspace_id}/network`

Gets the network option for a workspace. Every workspace has exactly one network policy binding,
 with 'default-policy' used if no explicit assignment exists.

API scopes: networking

## Path parameters

- `account_id` (string, optional)
  Your <Databricks> account ID. You can find your account ID in your <Databricks> accounts console.
  Example: `123e4567-e89b-12d3-a456-426614174000`
- `workspace_id` (int64, optional)
  The workspace ID.
  Example: `1234567890`

## Returns

Returns the WorkspaceNetworkOption object.

## Response

```json
{
  "network_policy_id": "my-network-policy",
  "workspace_id": 1234567890
}
```

