Remove Languages from Taxonomy

Remove language assignments from a taxonomy.

Endpoint

DELETE /v1/workspaces/{workspaceId}/taxonomy/{taxonomyId}/languages

Request

curl -X DELETE \
  'https://api.sharely.ai/v1/workspaces/{workspaceId}/taxonomy/{taxonomyId}/languages' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'organizationid: your-organization-id' \
  -d '{
    "languageIds": ["en", "es"]
  }'

Body Parameters

ParameterTypeRequiredDescription
languageIdsarray of stringsYesArray of language codes to remove

Response

{
  "success": true,
  "removedCount": 2
}

Related Endpoints