Trying to get a token from /api/v2/oauth/token using the client_credentials grant. The endpoint returns 403 Forbidden even though the app ID and secret are correct.
POST /api/v2/oauth/token
Content-Type: application/x-www-form-urlencoded
grant_type=client_credentials&client_id=MY_APP_ID&client_secret=MY_SECRET
Verified the credentials work in Postman but not in our C# code. Is there a specific scope required for this grant type that I’m missing?