August 4, 2026
Service Types in TenantSettings
GET /v3/TenantSettings now returns ServiceTypes, the service types configured for your tenant and the work types each one covers.
GET /v3/TenantSettings
{
// ...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.