# POST /api/knowledge-base/articles/{id}/helpful > Knowledge Base - Record Article Feedback - **Endpoint:** `POST /api/knowledge-base/articles/{id}/helpful` - **Group:** Knowledge Base - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/KnowledgeBaseController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Article unique ID | | `status` | String | yes | Mandatory yes or no | | `created_by` | Number | no | Optional user ID to attribute the vote to | ## Request example ```bash curl -X POST "https://yoursite.com/index.php/api/knowledge-base/articles/123/helpful" \ -H "authtoken: YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "status": "..." }' ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 201 Created { "status": 200, "messages": {"success": "The record has been saved."}, "id": 5 } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/knowledge-base/create-knowledge-base-article-feedback/