# PUT /api/users/{id} > Users - Update a User - **Endpoint:** `PUT /api/users/{id}` - **Group:** Users - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/UsersController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | User unique ID | | `first_name` | string | no | Optional User first name | | `last_name` | string | no | Optional User last name | | `email` | string | no | Optional User email | | `phone` | string | no | Optional User phone | | `job_title` | string | no | Optional Job title | | `gender` | string | no | Optional Gender | | `status` | string | no | Optional Status (active, inactive) | | `address` | string | no | Optional Address | | `skype` | string | no | Optional Skype ID | ## Request example ```bash curl -X PUT "https://yoursite.com/index.php/api/users/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": "User Update Successful." } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/users/update-user/