Gigs

Update a Task

POST https://api.cirro.io/v2/gigs/:gig_id/tasks/:id

Parameters

AttributeTypeNote
titlestringTitle of the gig task
base_pricenumberReward the worker will get after completing the task (in cents, e.g. 100 = 1€)

Example

1client = CirroIOV2::Client.new(...)
2client.Gig.update_task(42, 2, { base_price: 100 })
Previous
Create a Task for a Gig