Remove Languages from Taxonomy
Remove language assignments from a taxonomy.
Endpoint
DELETE /v1/workspaces/{workspaceId}/taxonomy/{taxonomyId}/languagesRequest
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
| Parameter | Type | Required | Description |
|---|---|---|---|
languageIds | array of strings | Yes | Array of language codes to remove |
Response
{
"success": true,
"removedCount": 2
}