I used the documented example in [posit documentation](https://docs.posit.co/connect/cookbook/content/rendering-content/) and got a 404 error.  ```r library(connectapi) CONTENT_GUID <- "34e425fb-179c-48e8-81bd-b334eb449f55" client <- connect() content <- content_item(client, CONTENT_GUID) render_task <- content_render(content) poll_task(render_task) ``` If you change this line https://github.com/rstudio/connectapi/blame/f6093432582e1bed9ebcadbf613944cd691e5ead/R/deploy.R#L583 to ```r task_data <- con$task(task$task$id, wait = wait, first = first) ``` It solves the problem. I saw some changes to the tasks endpoint in august and I think this code was not updated as id parameter is now mandatory. Thanks in advance for fixing this small bug !