Gig Time Activities
Create a Gig Time Activity
POST
https://api.cirro.io/v2/gig_time_activities
Parameters
Parameter | Type | Note | |
---|---|---|---|
gig_id | required | string | ID of the associated gig |
user_id | required | string | ID of the associated user |
date | required | string | Date of the activity |
description | required | string | Description of the activity |
duration_in_ms | required | number | Duration in milliseconds |
Returns the Gig Time Activity object if creation was successful. Returns an error if the creation failed.
Please see the guide on Results & Rewards to learn more about their usage.
Example
1client = CirroIOV2::Client.new(...)
2client.GigTimeActivity.create(
3 "gig_id": "1",
4 "user_id": "1",
5 "description": "Commodi excepturi et eum.",
6 "duration_in_ms": 7200000,
7 "date": "2022-06-19"
8)