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

# Get tracker scan history

> Gets the tracker scan history configuration and history for a project.



## OpenAPI

````yaml https://api.concord.tech/docs/json/privacy-v1/ get /organizations/{organizationId}/projects/{projectId}/tracker-scan-history
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-scan-history:
    get:
      tags:
        - Tracker Scans
      summary: Get tracker scan history
      description: Gets the tracker scan history configuration and history for a project.
      operationId: >-
        get_privacy_v1_organizations_organizationid_projects_projectid_tracker_scan_history
      parameters:
        - schema:
            anyOf:
              - type: array
                items:
                  type: string
                  format: uuid
              - type: string
                maxLength: 36
          in: query
          name: id
          required: false
        - schema:
            type: string
            format: uuid
          in: query
          name: organizationId
          required: false
        - schema:
            type: boolean
          in: query
          name: scheduledScanEnabled
          required: false
        - schema:
            type: string
            enum:
              - quarterly
              - monthly
              - weekly
              - daily
          in: query
          name: scanPeriod
          required: false
        - schema:
            type: integer
            minimum: 0
            maximum: 23
          in: query
          name: scheduledHour
          required: false
        - schema:
            type: integer
            minimum: 0
            maximum: 6
          in: query
          name: scheduledDayOfWeek
          required: false
        - schema:
            type: integer
            minimum: 1
            maximum: 31
          in: query
          name: scheduledDayOfMonth
          required: false
        - schema:
            type: string
          in: query
          name: sort
          required: false
        - schema:
            type: string
          in: query
          name: order
          required: false
        - schema:
            type: integer
            default: 0
            minimum: 0
          in: query
          name: offset
          required: false
        - schema:
            type: integer
            default: 100
            maximum: 1000
          in: query
          name: limit
          required: false
        - schema:
            type: string
            format: uuid
          in: path
          name: organizationId
          required: true
        - schema:
            type: string
            format: uuid
          in: path
          name: projectId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  offset:
                    type: integer
                  count:
                    type: integer
                  total:
                    type: integer
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        scheduledScanEnabled:
                          type: boolean
                        organizationId:
                          type: string
                          format: uuid
                        projectId:
                          type: string
                          format: uuid
                        scanPeriod:
                          type: string
                          enum:
                            - quarterly
                            - monthly
                            - weekly
                            - daily
                        scheduledHour:
                          type: integer
                          minimum: 0
                          maximum: 23
                        scheduledDayOfWeek:
                          type: integer
                          minimum: 0
                          maximum: 6
                        scheduledDayOfMonth:
                          type: integer
                          minimum: 1
                          maximum: 31
                        scanHistory:
                          type: array
                          items:
                            type: object
                            properties:
                              date:
                                type: integer
                              status:
                                type: string
                                enum:
                                  - running
                                  - completed
                                  - failed
                              scanType:
                                type: string
                                enum:
                                  - scheduled
                                  - manual
                              taskArn:
                                type: string
                              domainsCount:
                                type: integer
                              results:
                                type: object
                                properties:
                                  total:
                                    type: integer
                                  new:
                                    type: integer
                                  project:
                                    type: integer
                                  global:
                                    type: integer
                                  categories:
                                    type: object
                                    properties:
                                      analytics:
                                        type: integer
                                      do_not_sell:
                                        type: integer
                                      functional:
                                        type: integer
                                      global_privacy_control:
                                        type: integer
                                      ignored:
                                        type: integer
                                      limit_pii_use:
                                        type: integer
                                      marketing:
                                        type: integer
                                      strictly_necessary:
                                        type: integer
                                      unclassified:
                                        type: integer
                                    additionalProperties: false
                                additionalProperties: false
                            required:
                              - date
                              - status
                              - scanType
                            additionalProperties: false
                      required:
                        - scheduledScanEnabled
                        - organizationId
                        - projectId
                      additionalProperties: false
                required:
                  - total
                additionalProperties: false
        '400':
          description: Bad request response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    format: int32
                    default: 404
                    description: The status code of the request.
                  error:
                    type: string
                    default: Not Found
                    description: The error string for the status code.
                  message:
                    type: string
                    description: Description of the error encounted.
                required:
                  - statusCode
                  - error
                  - message
        '401':
          description: Unauthorized response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    format: int32
                    default: 404
                    description: The status code of the request.
                  error:
                    type: string
                    default: Not Found
                    description: The error string for the status code.
                  message:
                    type: string
                    default: Forbidden
                required:
                  - statusCode
                  - error
                  - message
        '403':
          description: Forbidden response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    format: int32
                    default: 403
                    description: The status code of the request.
                  error:
                    type: string
                    default: Forbidden
                  message:
                    type: string
                    default: Forbidden
                required:
                  - statusCode
                  - error
                  - message
        '404':
          description: Not found response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    format: int32
                    default: 404
                  error:
                    type: string
                    default: Not Found
                  message:
                    type: string
                    default: Not Found
                required:
                  - statusCode
                  - error
                  - message
        '422':
          description: Unprocessable Entity response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    format: int32
                    default: 422
                  error:
                    type: string
                    default: Unprocessable Entity
                  message:
                    type: string
                    description: Description of the error encounted.
                required:
                  - statusCode
                  - error
                  - message
        '500':
          description: Internal server error response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: integer
                    format: int32
                    default: 500
                  error:
                    type: string
                    default: Internal Server Error
                  message:
                    type: string
                    default: Internal Server Error
                    description: Will always be "Internal Server Error"
                required:
                  - statusCode
                  - error
                  - message
components:
  securitySchemes:
    ApiKeyAuth:
      name: x-api-key
      type: apiKey
      in: header
      description: ''

````