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

# Search Woku tracker assignments matching (name, value) within the company. Returns paginated WokuExternalTracker entries — caller can map .wokuId to fetch full Wokus.



## OpenAPI

````yaml /openapi-v1.json get /v1/external-trackers/search
openapi: 3.0.0
info:
  title: Woku Client API v1
  description: >-
    Public REST API for programmatic management of woku Voice-of-Customer
    programs: trackers, VoC instruments (NPS, woku, CES, CSAT), action plans,
    support tickets, multi-channel sending and response capture. Requests are
    company-scoped by the API key; never send a company id.
  version: 1.0.0
  contact:
    name: Woku
    url: https://woku.app
    email: team@woku.app
servers:
  - url: https://clientapi.woku.app
    description: Production
security: []
tags: []
paths:
  /v1/external-trackers/search:
    get:
      tags:
        - v1 - external-trackers
      summary: >-
        Search Woku tracker assignments matching (name, value) within the
        company. Returns paginated WokuExternalTracker entries — caller can map
        .wokuId to fetch full Wokus.
      operationId: ExternalTrackersController_search
      parameters:
        - name: name
          required: true
          in: query
          description: External tracker name (e.g. "trr") to look up.
          schema:
            maxLength: 60
            type: string
        - name: value
          required: true
          in: query
          description: Exact value to match against the tracker.
          schema:
            type: string
            maxLength: 500
        - name: page
          required: false
          in: query
          description: Page (1-based).
          schema:
            default: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Page size.
          schema:
            minimum: 1
            maximum: 100
            default: 20
            type: number
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: Company secret API key.

````