If it works in Postman but fails in SailPoint ISC, the issue is usually with token request formatting. For Oracle HCM OAuth2 client credentials, ISC typically requires:
scope URL-encoded correctly
Content-Type: application/x-www-form-urlencoded
client credentials sent in Authorization header (Basic base64(clientid:secret))
Most failures happen because ISC sends client credentials in body while Oracle IDCS expects them in the header.