> ## Documentation Index
> Fetch the complete documentation index at: https://developer.valuechecker.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Clear Forensics Verdict

> Manually mark an attachment's forensics verdict as clean, for when a claim handler has reviewed a flagged image and accepted it. Clears both verdicts and the image's flagged state. Because verdicts are stored per claimed item, this clears the attachment for every appraisal created from that item.



## OpenAPI

````yaml post /forensics/{client_reference_id}/clear
openapi: 3.0.0
info:
  title: ValueChecker API
  description: The ValueChecker Application Programming Interface.
  version: 0.150.1
  x-logo:
    url: >-
      https://files.valuechecker.net/images/default-category-images/Value-Checker_top_bar_logo.png
    backgroundColor: '#FFFFFF'
    altText: ValueChecker logo
  contact:
    name: Contact
    url: https://www.valuechecker.net/contact/
    email: support@valuechecker.net
servers:
  - url: https://api.valuechecker.net/
    description: ValueChecker API URL.
security:
  - apiKey: []
tags:
  - name: default
externalDocs:
  description: PDF Documentation (official)
  url: https://www.valuechecker.net/docs/api/pdf
paths:
  /forensics/{client_reference_id}/clear:
    post:
      tags:
        - default
      summary: Clear Forensics Verdict
      description: >-
        Manually mark an attachment's forensics verdict as clean, for when a
        claim handler has reviewed a flagged image and accepted it. Clears both
        verdicts and the image's flagged state. Because verdicts are stored per
        claimed item, this clears the attachment for every appraisal created
        from that item.
      parameters:
        - $ref: '#/components/parameters/client_reference_id'
        - $ref: '#/components/parameters/client_id'
        - $ref: '#/components/parameters/session-id'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - appraisal_id
                - file_name
              properties:
                appraisal_id:
                  type: integer
                  description: The appraisal the attachment belongs to.
                file_name:
                  type: string
                  description: >-
                    The attachment file name, as returned by the results
                    endpoint.
            example:
              appraisal_id: 97771
              file_name: receipt_front.jpg
      responses:
        '200':
          description: OK - The verdict was cleared.
          content:
            application/json:
              schema:
                type: object
                properties:
                  cleared:
                    type: boolean
              example:
                cleared: true
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  title:
                    type: string
                  description:
                    type: string
              example:
                title: Invalid mark-clean payload.
                description: 'file_name: Field required'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  description:
                    type: string
              example:
                error: Not Found
                description: >-
                  No completed forensics verdict found for attachment
                  'receipt_front.jpg'.
components:
  parameters:
    client_reference_id:
      name: client_reference_id
      in: path
      schema:
        type: integer
      required: true
      description: The client reference identifier.
      example: '9337'
    client_id:
      name: client_id
      in: query
      schema:
        type: integer
      example: '10'
      description: >-
        The client ID for the request. It's required if you have access to
        multiple clients with your API key. Otherwise, it's optional.
    session-id:
      name: session-id
      in: query
      schema:
        type: string
      example: a1b2c3d4e5f6g7h8i9j0
      description: Optional session identifier of the user.
  responses:
    '401':
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
              event_code:
                type: string
              event_dict:
                type: object
                properties:
                  event_severity:
                    type: string
                  title:
                    type: string
                  description:
                    type: string
          example:
            error: Invalid Authorization header
            event_code: ERIT00
            event_dict:
              event_severity: ERROR
              title: Invalid Authorization header
              description: Please provide the right authorization token
    '403':
      description: Forbidden
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
              event_code:
                type: string
              event_dict:
                type: object
                properties:
                  event_severity:
                    type: string
                  title:
                    type: string
                  description:
                    type: string
          example:
            error: Forbidden
            event_code: ERIT02
            event_dict:
              event_severity: ERROR
              title: Forbidden
              description: Access denied
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Note! Prefix your <api-key> with `apiKey `. Note the space after "apiKey
        ".

````