# Update Resolved Status Updates the resolved status of a specific matched result in the latest version of a test. Endpoint: POST /v1/inspect/analyze/{test_id}/resolve/{id} Version: 1.0.0 Security: basicAuth ## Path parameters: - `test_id` (string, required) The ID of the code analysis test - `id` (string, required) The ID of the matched result to update ## Request fields (application/json): - `resolved` (boolean, required) Boolean flag indicating whether the issue has been resolved ## Response 200 fields (application/json): - `meta` (object,null) Metadata including status and counts and support statistics - `items` (object, required) Test results including detected features and their support data - `items.id` (string, required) Unique identifier for the test - `items.version` (integer, required) Version number of this test result - `items.features` (array, required) List of email features detected in the analyzed HTML - `items.features.slug` (string) URL-friendly identifier for this feature - `items.features.name` (string) Name of the email feature - `items.features.description` (string,null) Detailed information about what this email feature does - `items.features.category` (string) Machine-readable category code that groups related features - `items.features.notes_lookup` (object) Maps note reference IDs to their corresponding implementation notes - `items.features.instances` (array, required) - `items.features.instances.id` (string, required) Unique identifier for this instance of the feature in the HTML - `items.features.instances.line` (integer, required) Line number where the feature was found in the HTML source - `items.features.instances.column` (integer, required) Column number where the feature was found in the HTML source - `items.features.support` (object, required) - `items.features.support.y` (array) Email clients that fully support this feature - `items.features.support.y.id` (string, required) Unique identifier for the email client variant (references dictionary variants) - `items.features.support.y.notes` (array) Additional implementation notes or caveats for this client - `items.features.support.a` (array) Email clients that partially support this feature - `items.features.support.n` (array) Email clients that do not support this feature - `items.features.support.u` (array) Email clients with unknown support for this feature ## Response 400 fields (application/json): - `message` (string, required) Response message ## Response 401 fields (application/json): - `message` (string, required) Response message ## Response 404 fields (application/json): - `message` (string, required) Response message