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

# Remove specific vocabulary entries

> Removes STT vocabulary entries whose content matches the provided words.



## OpenAPI

````yaml https://api.callers.ai/openapi-json post /campaigns/{campaignId}/vocabulary/remove
openapi: 3.0.0
info:
  title: Callers API
  description: API documentation for Callers, providing endpoints for seamless integration.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.callers.ai
security: []
tags: []
paths:
  /campaigns/{campaignId}/vocabulary/remove:
    post:
      tags:
        - Campaigns
        - Vocabulary
      summary: Remove specific vocabulary entries
      description: Removes STT vocabulary entries whose content matches the provided words.
      operationId: CampaignPublicController_removeVocabularyWords
      parameters:
        - name: campaignId
          required: true
          in: path
          description: ID of the campaign
          schema:
            type: string
        - name: x-sub-organization-id
          in: header
          schema:
            type: string
          description: >-
            Optional sub organization ID. Must belong to your main organization
            API key.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveVocabularyWordsPublicDto'
      responses:
        '200':
          description: Matching vocabulary entries removed
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  removedCount:
                    type: number
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
        '404':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
      security:
        - Authorization: []
components:
  schemas:
    RemoveVocabularyWordsPublicDto:
      type: object
      properties:
        words:
          type: array
          minItems: 1
          maxItems: 1000
          items:
            type: string
            minLength: 1
      required:
        - words
  securitySchemes:
    Authorization:
      type: apiKey
      in: header
      name: Authorization

````