Gigs
Update a Task
POST
https://api.cirro.io/v2/gigs/:gig_id/tasks/:id
Parameters
Attribute | Type | Note | |
---|---|---|---|
title | string | Title of the gig task | |
base_price | number | Reward 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 })