> ## 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.

# Delete tracker by ID

> Deletes a tracker.



## OpenAPI

````yaml https://api.concord.tech/docs/json/privacy-v1/ delete /organizations/{organizationId}/projects/{projectId}/trackers/{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}/trackers/{id}:
    delete:
      tags:
        - Trackers
      summary: Delete tracker by ID
      description: Deletes a tracker.
      operationId: >-
        delete_privacy_v1_organizations_organizationid_projects_projectid_trackers_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
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  dateCreated:
                    type: integer
                  dateUpdated:
                    type: integer
                  dateDetected:
                    oneOf:
                      - type: integer
                  company:
                    oneOf:
                      - type: string
                  organization:
                    type: string
                    format: uuid
                  project:
                    type: string
                    format: uuid
                  name:
                    type: string
                    maxLength: 256
                  description:
                    oneOf:
                      - type: string
                  domain:
                    oneOf:
                      - type: string
                  category:
                    type: string
                    enum:
                      - analytics
                      - functional
                      - marketing
                      - strictly_necessary
                      - unclassified
                      - ignored
                      - malicious
                  pattern:
                    type: string
                  origin:
                    type: string
                    description: >-
                      Origin of the tracker entry: autoscan (detected by
                      scanning systems) or manual (added directly by a user via
                      the UI or API)
                    enum:
                      - autoscan
                      - manual
                  type:
                    type: string
                    enum:
                      - cookie
                      - script
                      - iframe
                      - image
                      - link
                      - local_storage
                      - session_storage
                  expiration:
                    oneOf:
                      - type: integer
                required:
                  - id
                  - dateCreated
                  - dateUpdated
                  - organization
                  - project
                  - origin
                  - type
                additionalProperties: false
components:
  securitySchemes:
    ApiKeyAuth:
      name: x-api-key
      type: apiKey
      in: header
      description: ''

````