Is there a way to restrict an OAuth client to specific divisions via the /api/v2/oauth/clients endpoint to handle multi-tenant BPO access? I tried passing divisions in the JSON payload but it just gets ignored on PUT requests. Here’s what I’m sending:
{
"name": "BPO-Client",
"divisions": ["division-id-123"]
}
The docs aren’t super clear on this part.