<@U04UQ68083H> how can I retrieve the detail of th...
# ory-copilot
f
@chilly-king-10285 how can I retrieve the detail of this error "Une erreur est survenue (ID: 94090d68-9884-494c-97b7-e2f538353362)."
b
A message from kapa.ai
To retrieve the details of an error like "Une erreur est survenue (ID: 94090d68-9884-494c-97b7-e2f538353362)", you typically need to look up the error using the error ID provided. In Ory, error responses follow a standard JSON format that includes fields such as error ID, message, debug information, and status code. However, the knowledge sources do not explicitly describe an endpoint or method for retrieving error details by error ID after the fact. The error response format generally looks like this:
Copy code
json {   "error": {     "id": "unique-error-id",     "message": "Error message",     "status_code": 404,     "debug": "Debug information",     "error_description": "Further information",     // ... other fields   } }
If you encounter such an error in the Ory APIs, the error details are usually included in the API response itself. If you need to investigate further, you may need to check your application logs or contact Ory support with the error ID for more information, especially if the error occurred in a managed Ory Network project. I'm sorry, but the knowledge sources do not contain enough information to confirm if there is a public API endpoint to retrieve error details by error ID after the error has occurred. The error details are typically returned in the original API response at the time the error happens, not retrievable later by ID aloneĀ [Ory API Reference](https://www.ory.sh/docs/reference/api).