Update an item data
shot = aq.shot("123456").get()
shot.update_data({
"name": "New shot name"
})
The update_data
method will update the item data and return the updated item. If you want to replace the item data, you can use the replace_data
method instead.
Get users
Previous
Get projects
Next