Hi @Arutprakasam,
HTTP 302 Found is a redirect response, usually means "Moved Temporarily". Use browser developer tools to inspect network requests, it can provide additional information about the redirect. Look for the "Location" header, which indicates the URL to which the request is redirected. The source is either in the web server settings or in the application itself, so no one knows but you.
In IIS Manager, check your site level and server level respectively to see if the following modules are configured:
"URL Rewrite" module
"HTTP Redirect" module
On the IIS server, viewing the log files may provide more information about the 302 status code. Check the IIS log file to see which resource was redirected and see where the "Location" header was targeted.
If the IIS logs do not provide enough information, check your API code to see if any explicit 302 redirects are set in the code.
Regardless, even in valid scenarios you may see HTTP 302, which is not an error in itself. If you need help diagnosing a problem, you'll need to post detailed IIS configuration information and network request logs.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the email notification for this thread.
Best regards,
Yurong Dai