I’m writing a script to audit OAuth clients in our org. I need to list all clients and check their scope assignments programmatically.
I tried GET /api/v2/oauth/clients but the response doesn’t include the scopes. I expected a scopes array in the JSON payload. Is there another endpoint or a specific header I’m missing?
Using the Python SDK, platform.oauth_clients.get_oauth_clients() returns the same limited data. Any tips?