When we go to Categories and Labels under Knowledge, then we click edit on a subcategory, for example, Supplies & Interoffice. We click edit on that category child to try to rename it.
Also tried with the API
$WebRequestParams = @{
Uri = "https://api.usw2.pure.cloud/api/v2/knowledge/knowledgeBases/KBID/categories/ID"
Method = "Patch"
Headers = @{
"Authorization" = $Token
"Content-Type" = "application/json"
}
Body = @{
"name" = "Supplies,Interoffice, Doc Imaging"
"parentCategoryId" ="$ID"
} | ConvertTo-Json
}
Invoke-WebRequest @WebRequestParams | ConvertFrom-Json
----ERROR-------
{
"message": "Category child limit (10) exceeded for parent $ID",
"code": "limit.reached",
"status": 400,
"messageWithParams": "Category child limit ({limit}) exceeded for parent {parentId}",
"messageParams": {
"limit": "10",
"parentId": "$ID"
},
"contextId": "$ID",
"details": [],
"errors": []
}
#PlatformAdministration#QualityManagement------------------------------
Pat Johnson
Numerica Credit Union
------------------------------