GET /v1/tenant/me
Returns the full configuration for the authenticated tenant. Requires authentication (JWT or API key).Example
Response
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Tenant UUID |
name | string | Organisation name |
slug | string | URL-safe identifier |
country | string | ISO 3166-1 alpha-2 country code |
verticals | string[] | Active operational verticals |
dispatch_threshold | number | Minimum score for auto-dispatch (0–1) |
reinforcement_timeout_min | integer | Minutes before auto-reinforcement (0 = disabled) |
feature_flags.dispatch_mode | boolean | Auto-dispatch enabled |
status | string | active, suspended, inactive |
PATCH /v1/tenant/dispatch-settings
Configure auto-dispatch behaviour for the tenant. Requirescompany_admin or company_tech role.
Request Body
| Field | Type | Description |
|---|---|---|
dispatch_mode | boolean | Enable or disable auto-dispatch |
dispatch_threshold | number (0–1) | Minimum score for auto-dispatch |
reinforcement_timeout_min | integer | Minutes before backup auto-dispatch if team doesn’t ACK (0 = disabled) |
Threshold Reference
| Level | Value | Behaviour |
|---|---|---|
| Low | 0.10 | Dispatch any available team |
| Medium | 0.20 | Team must be well positioned |
| High | 0.40 | Only the best-matched team |

