Hi anonymous user • Thank you for reaching out.
The Reply URL or Assertion Consumer Service URL is the URL where the token is posted after successful authentication. You can set multiple reply URLs in a given enterprise application but the token can only be posted to one of the Reply URLs configured in the application, depending on which Reply URL or Assertion Consumer Service URL is included in the authentication request.
Above is a sample SAML Request where AssertionConsumerServiceURL
is https://www.example.com/saml
which means, after successful authentication, the token will be posted to https://www.example.com/saml
even though there are other reply URLs configured in the application such as https://www.example.com/saml1
https://www.example.com/saml2
but the token will only be posted to the one included in the SAML request which is also present in the enterprise application's Reply URLs list.
To update which reply URL should be included in the SAML request, the application code or app configuration via admin console (if supported) needs to be updated.
-----------------------------------------------------------------------------------------------------------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.