# GET /api/v1/network/vpn

> Report a datacenter service type as not manageable through the API

- Group: other-services
- Tier: R
- Required scope: read:services
- Docs: https://api.inleed.com/reference/other-services/list-unavailable-service-2

## Description

Returns `{supported:false, category, reason:"not_available", detail, notes}` — the service's operations run over datacenter infrastructure that is not exposed.

## Request

```bash
curl -X GET "https://mcp.inleed.com/api/v1/network/vpn" \
  -H "Authorization: Bearer inl_live_…"
```

## Response · 200

```json
{
  "supported": true,
  "category": "colocation",
  "reason": "example.se",
  "detail": "Resolved via the owning account.",
  "notes": []
}
```

## Errors

- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

