# Whether this workspace may create SIP trunks

Source: https://docs.usetone.ai/reference/sip-trunks/entitlement

> Ask BEFORE offering the create form.

`GET /v1/sip-trunks/entitlement`
Ask BEFORE offering the create form. `enabled` is the staff-set entitlement; `organizationVerified` is the compliance prerequisite the customer can act on themselves. Both must be true for `POST /v1/sip-trunks` to succeed.

Requires the `read` scope.

## Response

| Field | Type | | Meaning |
|---|---|---|---|
| `enabled` | boolean | required | Whether this organization may create SIP trunks. Staff-set; a trunk still needs its own approval before it carries a call. |
| `organizationVerified` | boolean | required | Whether compliance has verified this organization. A prerequisite for the entitlement, and the half the customer can act on. |
| `request` | object | null | required | The organization's most recent access request, or null if it has never asked. The NEWEST row — the table is history and only the latest describes where the org stands. |

### Example response

```json
{
  "data": {
    "enabled": false,
    "organizationVerified": true,
    "request": {
      "id": "c0a8012e-1f2b-4c3d-9e4f-5a6b7c8d9e0f",
      "rejectionReason": "Carrier is outside India — see the cross-border note in the docs.",
      "requestedAt": "2026-09-15T09:30:00.000Z",
      "reviewedAt": null,
      "status": "pending"
    }
  }
}
```
