Get Article Feedback Counters
GET/api/knowledge-base/articles/{id}/helpful
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| id | Number | Article unique ID |
| include_internal | Boolean | optional Optional, set to 1 to allow an internal help article |
curl -X GET "https://yoursite.com/api/knowledge-base/articles/123/helpful" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
HTTP/1.1 200 OK
{ "article_id": 12, "total_feedback": "9", "helpful_status_yes": "7", "helpful_status_no": "2" }