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

# Create an external tracker definition in the company catalog

> The company and creator are resolved server-side from the caller key. Tracker names are unique per company.



## OpenAPI

````yaml /openapi-v1.json post /v1/external-trackers
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:
    post:
      tags:
        - v1 - external-trackers
      summary: Create an external tracker definition in the company catalog
      description: >-
        The company and creator are resolved server-side from the caller key.
        Tracker names are unique per company.
      operationId: ExternalTrackersController_createTracker
      parameters:
        - name: X-Woku-Idempotency-Key
          in: header
          description: >-
            Client-generated key to make the create safe to retry. A retry with
            the same key returns the original result instead of creating again.
          required: false
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateExternalTrackerDefinitionDTO'
      responses:
        '201':
          description: Tracker definition created
        '403':
          description: Invalid or missing API key
        '409':
          description: Tracker name already in use
      security:
        - bearer: []
components:
  schemas:
    CreateExternalTrackerDefinitionDTO:
      type: object
      properties:
        name:
          type: string
          description: >-
            Tracker name. Identifies the tracker within the company catalog.
            Unique per company.
          example: trr
          minLength: 1
          maxLength: 60
        system:
          type: string
          description: External system this tracker maps to.
          example: crm interno
          maxLength: 80
        description:
          type: string
          description: Human-readable description of the tracker.
          example: transaction id of a lease or sale
          maxLength: 500
      required:
        - name
        - system
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: Company secret API key.

````