Gig Invitations

List All Gig Invitations

GET https://api.cirro.io/v2/gig_invitations{?user_id}{?gig_id}{?limit}{?before}{?after}{?status}

Parameters

ParameterTypeNote
user_idstringOnly returns gig invitations of the given user ID
gig_idstringOnly returns gig invitations of the given gig ID
limitintegerA limit on the number of objects to be returned. Limit can range between 1 and 500, default is 10
beforestringA cursor for pagination. Given object ID of the first item of a returned list will give you the previous page
afterstringA cursor for pagination. Given object ID of the last item of a returned list will give you the next page
statusarray or stringA filter based on the status of the associated gig invitations (accepted, [accepted, pending])
exclude_archived_gigsbooleanA filter based on the Gig archival

Example

1client = CirroIOV2::Client.new(...)
2client.GigInvitation.list()
Previous
About Gig Invitations