# August 4, 2026 

** August 4, 2026 Karbon API release returns your tenant's service types from TenantSettings. **
---

## Service Types in TenantSettings

`GET /v3/TenantSettings` now returns `ServiceTypes`, the service types configured for your tenant and the work types each one covers.

```http
GET /v3/TenantSettings
```

```json
{
  // ...existing tenant settings
  "ServiceTypes": [
    {
      "Name": "Tax Compliance",
      "ServiceTypeKey": "5kQr8VtLm2xP",
      "WorkTypeKeys": ["nTlQkTQnNz7", "3RJgJSgq5xz"]
    }
  ]
}
```

Each entry's `WorkTypeKeys` are the `WorkTypeKey` values from the `WorkTypes` array in the same response, so you can group work types by the service they belong to without a second call.

`ServiceTypes` is an additive response field — existing fields and their values are unchanged.
