Gig Invitations
List All Gig Invitations
GET
https://api.cirro.io/v2/gig_invitations{?user_id}{?gig_id}{?limit}{?before}{?after}{?status}
Parameters
Parameter | Type | Note | |
---|---|---|---|
user_id | string | Only returns gig invitations of the given user ID | |
gig_id | string | Only returns gig invitations of the given gig ID | |
limit | integer | A limit on the number of objects to be returned. Limit can range between 1 and 500, default is 10 | |
before | string | A cursor for pagination. Given object ID of the first item of a returned list will give you the previous page | |
after | string | A cursor for pagination. Given object ID of the last item of a returned list will give you the next page | |
status | array or string | A filter based on the status of the associated gig invitations (accepted , [accepted, pending] ) | |
exclude_archived_gigs | boolean | A filter based on the Gig archival |
Example
1client = CirroIOV2::Client.new(...)
2client.GigInvitation.list()