The error message "No project found with slug or ID" typically indicates that the Ory API or CLI could not locate a project matching the provided slug or ID. According to the Ory API reference, a 404 Not Found error is returned when the requested project does not exist. This can happen with various endpoints, such as when trying to get, update, patch, or delete a project, or when listing projects with a filter that doesn't match any existing project. The error response includes a message like "The requested resource could not be found" and may provide additional debug information if enabled. To resolve this, ensure that: - The project slug or ID you are using is correct and exists in your Ory Network workspace. - You have the necessary permissions to access the project. - You are using the correct workspace or organization context if applicable. If you continue to encounter this error, double-check the project identifier and your current context (such as workspace or organization) in your CLI or API request. If the issue persists, it may be helpful to list all projects to verify the available slugs and IDs. For more details on the error format and possible causes, see the Ory API reference for project-related endpoints, which describes the 404 Not Found error and its structure in detail [Ory API Reference - getProject](
https://raw.githubusercontent.com/ory/docs/master/docs/reference/api.json).