Gigs
Create a Task
POST
https://api.cirro.io/v2/gigs/:id/tasks
Parameters
Attribute | Type | Note | |
---|---|---|---|
title | required | string | Title of the gig task |
base_price | required | number | Reward the worker will get after completing the task (in cents, e.g. 100 = 1€) |
Example
1client = CirroIOV2::Client.new(...)
2client.Gig.tasks(1, { title: "Critical Bug", base_price: 100 })