Gigs
Update a Gig
POST
https://api.cirro.io/v2/gigs/
:id
Parameters
Parameter | Type | Note | |
---|---|---|---|
title | string | ||
description | string | ||
url | string | ||
start_at | number | UNIX timestamp | |
end_at | number | UNIX timestamp | |
total_seats | number | ||
seats_min | number | Default: 1 | |
seats_max | number | Default: 1 | |
invitation_mode | enum | One of auto , manual , disabled | |
invitation_multiplier | number | Default: 10 | |
filter_query | object | ||
tasks | array | ||
notification_payload | object | Default: {} | |
invitation_notification_topic | string | number | either the name or the id of the topic | |
epam_options | object | Default: {} |
Any (set of) attributes may be provided on an update call. Only the provided attributes will be updated. The rest will remain unchanged.
Returns the Gig object if the update was successful. Returns an error if creation failed.
Please see our guide on Gigs to learn more about the parameters and their usage in different scenarios.
Example
1client = CirroIOV2::Client.new(...)
2client.Gig.update(42, title: "My better named Gig")