Gigs
Create a Task
POST
https://cirro.io/api/v2/gigs/:id/tasksParameters
| 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 })