GET
/
organizations
/
{organizationId}
/
projects
/
{projectId}
/
trackers
curl --request GET \
  --url https://api.concord.tech/privacy-v1/organizations/{organizationId}/projects/{projectId}/trackers \
  --header 'x-api-key: <api-key>'
{
  "offset": 123,
  "count": 123,
  "total": 123,
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "dateCreated": 123,
      "dateUpdated": 123,
      "dateDetected": 123,
      "company": "<string>",
      "organization": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "project": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "domain": "<string>",
      "category": "analytics",
      "pattern": "<string>",
      "origin": "autoscan",
      "type": "cookie"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
string
required
projectId
string
required

Query Parameters

id
name
string
Maximum length: 256
type
enum<string>
Available options:
cookie,
script,
iframe,
image,
link
category
enum<string>
Available options:
analytics,
functional,
marketing,
strictly_necessary,
unclassified,
ignored,
malicious
excludeCategory
enum<string>
Available options:
analytics,
functional,
marketing,
strictly_necessary,
unclassified,
ignored,
malicious
pattern
string
Maximum length: 256
company
string
Maximum length: 256
domain
string
Maximum length: 128
description
string
origin
enum<string>

Origin of the tracker entry: autoscan (detected by scanning systems) or manual (added directly by a user via the UI or API)

Available options:
autoscan,
manual
sort
string
order
string
offset
integer
default:0
Required range: x >= 0
limit
integer
default:100
Required range: x <= 1000

Response

200
application/json
Default Response

The response is of type object.