## Update a series `PUT https://getkollek.com/api/series/{series}` Update the name and description of a series. **Permissions:** Owners and editors. Viewers get a 404 response. ### Path parameters - `series` (integer, required): The ID of the series. ### Body parameters - `name` (string, required): The name of the series. Maximum 255 characters. - `description` (string, optional): A free text description of the series. Maximum 2000 characters. **Returns:** The updated series object. ### Example request ```bash curl https://getkollek.com/api/series/1 \ -X PUT \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -d '{ "name": "Harry Potter", "description": "The wizarding world across books, films and collectibles." }' ``` ### Example response `Status: 200` ```json { "data": { "type": "series", "id": "1", "attributes": { "name": "Harry Potter", "description": "The wizarding world across books, films and collectibles.", "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/series/1" } } } ```