GET
/
radar
/
v1
/
tracking-scripts
/
{trackingScriptId}
/
filters
curl --request GET \
  --url https://api.snitcher.com/radar/v1/tracking-scripts/{trackingScriptId}/filters \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "tracking_script_filter_field": "country",
      "tracking_script_filter_type": "blacklist",
      "filter_value": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your personal access token (PAT) to authenticate

Path Parameters

trackingScriptId
string
required

The ID of the tracking script to list filters for

Example:

"12345"

Response

200
application/json

Tracking script filters retrieved successfully

The response is of type object.