Update a Group
PUT/api/knowledge_base/groups/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
curl -X PUT "https://yoursite.com/api/knowledge_base/groups/123" \
-H "authtoken: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "field": "value" }' Success-Response:
HTTP/1.1 200 OK
{
"status": true,
"message": "Group updated successfully"
} Error-Response:
HTTP/1.1 404 Not Found
{
"status": false,
"message": "Group not found"
}