Could someone explain how to restrict an OAuth client to specific divisions for multi-tenant BPO access? I am trying to limit API access per client division. Here is the payload I am sending to /api/v2/oauth/clients:
{
"name": "BPO Client A",
"clientId": "abc123",
"scopes": ["organization:read"],
"division": { "id": "div-123" }
}
The token grants full org access. How do I enforce division isolation?