> ## Documentation Index
> Fetch the complete documentation index at: https://docs.txcloud.thetekcircle.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Resolve match



## OpenAPI

````yaml openapi/watchlist.yaml post /watchlist/matches/{id}/resolve
openapi: 3.0.3
info:
  title: TXCloud Watchlist API
  version: 1.0.0
  description: >
    AML/CFT screening against global sanctions lists, PEP databases, and adverse
    media.
servers:
  - url: https://api.txcloud.io/v1
  - url: https://sandbox.api.txcloud.io/v1
security:
  - BearerAuth: []
tags:
  - name: Screening
    description: Entity screening
  - name: Matches
    description: Match management
  - name: Monitoring
    description: Ongoing monitoring
  - name: Lists
    description: Watchlist management
  - name: Analytics
    description: Screening analytics
paths:
  /watchlist/matches/{id}/resolve:
    post:
      tags:
        - Matches
      summary: Resolve match
      operationId: resolveMatch
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MatchResolution'
      responses:
        '200':
          description: Match resolved
components:
  schemas:
    MatchResolution:
      type: object
      required:
        - resolution
      properties:
        resolution:
          type: string
          enum:
            - true_positive
            - false_positive
            - escalate
        reason:
          type: string
        notes:
          type: string
        resolved_by:
          type: string
        evidence:
          type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````