# PUT /api/tasks/{id} > Tasks - Update a Task - **Endpoint:** `PUT /api/tasks/{id}` - **Group:** Tasks - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/TasksController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Task unique ID | | `title` | string | no | Optional Task title | | `description` | string | no | Optional Task description | | `assigned_to` | number | no | Optional Assigned user ID | | `status_id` | number | no | Optional Task status ID | | `priority_id` | number | no | Optional Task priority ID | | `deadline` | string | no | Optional Deadline | | `points` | number | no | Optional Story points | ## Request example ```bash curl -X PUT "https://yoursite.com/index.php/api/tasks/123" \ -H "authtoken: YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "field": "value" }' ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK { "status": true, "message": "Task Update Successful." } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/tasks/update-task/