Hello @Lin, Joe
The error message:
427 / Gone - The requested API version has been retired
indicates that your application is sending requests to an Azure Document Intelligence API version that is no longer supported.
Troubleshooting steps:
- Check the API version configured in your REST calls or SDK.
- Verify the
api-version parameter being sent in the request.
- If you're using a preview API version such as
2024-07-31-preview, 2024-02-29-preview, or 2023-10-31-preview, these versions have been retired, and requests may return a "Gone" error.
- Migrate to the current GA version
- Microsoft recommends using Document Intelligence v4.0 (2024-11-30 GA) for new and existing workloads.
- Verify SDK versions
- Ensure your SDK version supports the current API version.
- Older SDKs may continue sending retired API versions unless explicitly configured.
Review application configuration
- Search your code, app settings, environment variables, and deployment pipelines for hardcoded API versions.
- Update all references to use the supported API version.
**Test using the latest endpoint**
- After updating the API version, validate your requests using a simple document analysis call to confirm the service responds successfully.
```If the issue persists after updating to the supported API version, please share:
- The API version currently being used
REST request sample (excluding keys/secrets)
SDK language and version
This will help further narrow down the cause.
If you still face problems, share additional details and we’ll assist further.
Follow the detailed migration guidance to move to Azure Document Intelligence API version v4.0
Thankyou!