Skip to main content
POST
/
campaigns
/
{campaignId}
/
vocabulary
/
remove
Remove specific vocabulary entries
curl --request POST \
  --url https://api.callers.ai/campaigns/{campaignId}/vocabulary/remove \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "words": [
    "<string>"
  ]
}
'
{
  "success": true,
  "removedCount": 123
}

Authorizations

Authorization
string
header
required

Headers

x-sub-organization-id
string

Optional sub organization ID. Must belong to your main organization API key.

Path Parameters

campaignId
string
required

ID of the campaign

Body

application/json
words
string[]
required
Required array length: 1 - 1000 elements
Minimum string length: 1

Response

Matching vocabulary entries removed

success
boolean
removedCount
number