Gig Results

Create a Gig Result

POST https://api.cirro.io/v2/gig_results

Parameters

ParameterTypeNote
gig_task_idrequiredstringID of the associated gig task
user_idrequiredstringID of the associated user
titlerequiredstringTitle of the gig result
descriptionstringDescription of the gig result
idempotency_keystringThe API supports idempotency for safely retrying requests without accidentally performing the same operation twice
quantityrequirednumberQuantity of completed tasks
multiplierstringA factor in the range of 0.0000 - 9.9999 which will be multiplied to the base price for the completed task. Use it to give your payout a boost or a reduction. The end payout is calculated as following: quantity x task.base_price x multiplier. By default multiplier = 1.0
currencystringCurrency of paid amount, you can choose between "USD" and "EUR", by default it's "USD"
delivery_datestringWhen did the worker perform the work, by default it equals to the creation time of the gig result
cost_center_keyrequiredstringA EPAM project code for book keeping in finance. It is required if cost_center_data is not given
cost_center_datarequiredobjectA json object containing customer details. It is required if cost_center_key is not given

Cost Center Data Parameters

ParameterTypeNote
customer_idrequiredstringExternal ID of customer
companyrequiredstring
legal_entityrequiredstringThe legal entity of the customer
inhouserequiredstringYes or No

Example

1client = CirroIOV2::Client.new(...)
2gig_result_params = {
3  "gig_task_id": "1",
4  "user_id": "1",
5  "title": "Batman Begins",
6  "description": "All right, Mr. DeMille, I'm ready for my closeup.",
7  "quantity": 2,
8  "multiplier": "1.0",
9  "delivery_date": "2022-06-13",
10  "currency": "USD",
11  "cost_center_key": nil,
12  "cost_center_data": {
13    "company": "Schinner, Brakus and Ortiz",
14    "inhouse": "no",
15    "customer_id": "1234",
16    "legal_entity": "GmbH"
17  }
18}
19client.GigResults.create(gig_result_params)
Previous
Get a Gig Result