# Update Resolved Status

Updates the resolved status of a specific instance within a feature 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 instance to update (found in features[].instances[].id)

## Request fields (application/json):

  - `resolved` (boolean, required)
    Boolean flag indicating whether the issue has been resolved

## Response 200 fields (application/json):

  - `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.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.instances.resolved` (boolean | null)
    Whether this specific instance has been resolved

  - `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

