Updating by Task ID
Use theupdate() method with a task ID when you have the ID stored:
Updating from TaskResponse Object
If you have a task object (from a previousget_task() or create_task()), you can update it directly:
Immediate vs. Waited Updates
Like task creation, you have two options for updates:Wait for Processing
The standardupdate() method waits for processing to complete:
Immediate Response
Useupdate_task() for an immediate response without waiting:
Async Usage
For async applications, useawait with the update methods: