Payouts
Get Bonus Payouts
GET
https://api.cirro.io/v2/payouts{?user_id}{?reference_id}{?reference_type}
Parameters
Parameter | Type | Note | |
---|---|---|---|
reference_id | string | A filter based on the ID of the associated reference e.g. gig | |
reference_type | string | A filter based on the type of the associated reference e.g. Gig | |
user_id | string | A filter based on the ID of the associated user | |
limit | integer | A limit on the number of objects to be returned. Limit can range between 1 and 100, and the 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 |
Returns the Payout object if retrieval succeeded.
Example
1client = CirroIOV2::Client.new(...)
2client.Payout.list()