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

# Update tracker scan

> Updates a tracker scan result.



## OpenAPI

````yaml https://api.concord.tech/docs/json/privacy-v1/ patch /organizations/{organizationId}/projects/{projectId}/tracker-scans/{id}
openapi: 3.1.0
info:
  title: Concord Privacy API
  description: >-
    The Concord Privacy API provide full access to the Concord platform for
    registered organizations.
  version: 3.29.6
  contact:
    email: support@concord.tech
    name: Concord Technologies Inc.
    url: https://www.concord.tech
  license:
    name: Proprietary
    url: https://www.concord.tech/legal/saas-agreement
  termsOfService: https://www.concord.tech/legal/saas-agreement
servers:
  - url: https://api.concord.tech/privacy-v1
    description: Concord Privacy API
security:
  - ApiKeyAuth: []
tags:
  - name: API Keys
    description: API Key endpoints.
  - name: Consent Events
    description: Consent event endpoints.
  - name: Consent Types
    description: Consent type endpoints.
  - name: Compliance Requests
    description: Compliance request endpoints.
  - name: Data Systems
    description: Data System endpoints.
  - name: Domains
    description: Domain endpoints.
  - name: Emails
    description: Emails endpoints.
  - name: GCM Scans
    description: GCM Scan endpoints.
  - name: Health Check
    description: Health Check endpoints.
  - name: Metrics
    description: Metrics endpoints.
  - name: Permissions
    description: Permission endpoints.
  - name: Policies
    description: Policy endpoints.
  - name: Projects
    description: Project endpoints.
  - name: Languages
    description: Language endpoints.
  - name: Organizations
    description: Organization endpoints.
  - name: Regions
    description: Region template endpoints.
  - name: Sessions
    description: Session endpoints.
  - name: Trackers
    description: Tracker endpoints.
  - name: Tracker Scans
    description: Tracker Scan endpoints.
  - name: Users
    description: Users endpoints.
  - name: Subscriptions
    description: Subscription endpoints.
paths:
  /organizations/{organizationId}/projects/{projectId}/tracker-scans/{id}:
    patch:
      tags:
        - Tracker Scans
      summary: Update tracker scan
      description: Updates a tracker scan result.
      operationId: >-
        patch_privacy_v1_organizations_organizationid_projects_projectid_tracker_scans_id
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: organizationId
          required: true
        - schema:
            type: string
            format: uuid
          in: path
          name: projectId
          required: true
        - schema:
            type: string
            format: uuid
          in: path
          name: id
          required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                addedToProject:
                  type: boolean
                category:
                  type: string
                  enum:
                    - analytics
                    - functional
                    - marketing
                    - strictly_necessary
                    - unclassified
                    - ignored
                    - malicious
                company:
                  oneOf:
                    - type: string
                domain:
                  oneOf:
                    - type: string
                description:
                  oneOf:
                    - type: string
                expiration:
                  oneOf:
                    - type: integer
                name:
                  type: string
                  maxLength: 256
                matchType:
                  type: string
                  enum:
                    - global
                    - project
                    - new
                matchedTrackerId:
                  type: string
                  format: uuid
                pattern:
                  type: string
                type:
                  type: string
                  enum:
                    - cookie
                    - script
                    - iframe
                    - image
                    - link
                    - local_storage
                    - session_storage
              additionalProperties: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  addedToProject:
                    type: boolean
                  category:
                    type: string
                    enum:
                      - analytics
                      - functional
                      - marketing
                      - strictly_necessary
                      - unclassified
                      - ignored
                      - malicious
                  company:
                    oneOf:
                      - type: string
                  dateCreated:
                    type: integer
                  dateUpdated:
                    type: integer
                  domain:
                    oneOf:
                      - type: string
                  expiration:
                    oneOf:
                      - type: integer
                  dateDetected:
                    oneOf:
                      - type: integer
                  description:
                    oneOf:
                      - type: string
                  id:
                    type: string
                    format: uuid
                  matchType:
                    type: string
                    enum:
                      - global
                      - project
                      - new
                  matchedTrackerId:
                    oneOf:
                      - type: string
                  name:
                    type: string
                    maxLength: 256
                  origin:
                    type: string
                    enum:
                      - site-client
                      - backend
                  pattern:
                    oneOf:
                      - type: string
                  projectId:
                    type: string
                    format: uuid
                  projectDomain:
                    oneOf:
                      - type: string
                  type:
                    type: string
                    enum:
                      - cookie
                      - script
                      - iframe
                      - image
                      - link
                      - local_storage
                      - session_storage
                required:
                  - addedToProject
                  - dateCreated
                  - dateUpdated
                  - domain
                  - expiration
                  - id
                  - matchType
                  - matchedTrackerId
                  - name
                  - origin
                  - projectId
                  - projectDomain
                  - type
                additionalProperties: false
components:
  securitySchemes:
    ApiKeyAuth:
      name: x-api-key
      type: apiKey
      in: header
      description: ''

````