A fully managed platform in Microsoft Foundry for hosting, scaling, and securing AI agents built with any supported framework or model
Hi @Anton Zhukov,
Thanks for reporting this. A 404 NotFound error such as “Conversation ID conv_ not found in project foundry-@AML”** typically means the request reached the Foundry service, but the specified conversation ID could not be resolved within the targeted project context.
Here are a few checks to help narrow this down:
- Verify the Foundry project endpoint Ensure you are using the Azure AI Foundry project–scoped endpoint, for example:
https://<account>.services.ai.azure.com/api/projects/<project-name>/openai/v1/conversations/...
Using an Azure OpenAI (*.openai.azure.com) endpoint or omitting the /api/projects/... path can result in a 404.
- Confirm the conversation exists in the project Try listing conversations via
GET …/openai/v1/conversationsand verify that theconv_…ID appears exactly as referenced (IDs are case-sensitive). - Check API version and region alignment
- Make sure the required
api-version(for example,v1) is specified. - Confirm the hostname and region (e.g.,
swedencentral,francecentral) match the Foundry project where the conversation was created.
- Test with a newly created conversation If the issue only affects older conversation IDs, create a new conversation and verify whether API calls succeed for it. This helps rule out ID-specific or state-related issues.
If the problem persists after these checks, please consider opening or following up on a support request and include:
- Full request URL (without credentials)
- Conversation ID
- Project name, region, and API version
- Timestamp and
request_idfrom the error response
This information will help the backend team investigate why the conversation lookup is failing.
Hope this helps clarify the issue.