Hello, I hope you are doing great!
I’m trying to configure SSO in sas using SasViya SAML and SCIM on version 2025.03 lts, “use your corporate credentials” was successfully deployed following the instructions SAS Help Center: Scenario: SAML with Microsoft Entra ID (Linux Full Deployment), already disabled the ldap and I’ve followed all pre requisites, but when I try to access the sas app I get de following error:

I remember that we need to configure scim to proceed with authentication, so I followed the instructions on SAS Viya Azure AD SCIM(worked fine) and SAS Help Center: How to Configure SCIM(don’t work).
This is our first step:
INGRESS_URL=https://redacted export BEARER_TOKEN=`curl -sk -X POST "${INGRESS_URL}/SASLogon/oauth/token" -u "sas.cli:" -H "Content-Type: application/x-www-form-urlencoded" -d 'grant_type=password&username=viya_admin&password=redacted' | awk -F: '{print $2}'|awk -F\" '{print $2}'`
But in the second step:
curl -k -X POST "${INGRESS_URL}/SASLogon/oauth/clients" -H "Content-Type: application/json" -H "Authorization: Bearer $BEARER_TOKEN" -H "X-Identity-Zone-Id: <tenant>" -d '{"client_id": "idp-client-id","client_secret": "idp-client-secret","authorities": ["SCIM"],"authorized_grant_types": ["client_credentials"],"access_token_validity": 63070000}'
I’m receiving error 404 path not found for SASLogon/oauth/clients, when I try to use this command in another environment(2024.09) it works fine, is there another way to do this in 2025.03 version? The documentation about this process says to do by this way but using this way I’m getting this error.
Could someone help me?
Thanks.