# Update list
You can update a specific list.
PUT /lists/:id/
| Attributes | Type | Required | Description | 
|---|---|---|---|
| id | integer | yes | A unique identifier for the list which is given by User.com automatically. | 
| description | string | no | A list description. | 
| name | string | yes | A list name. | 
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X PUT -H "Authorization: Token <your_64_char_api_key>"
     -H "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
      "name": "Updated list name",
      "description": "Updated list description"
    }' "https://<your_app_subdomain>.user.com/api/public/lists/:id/"