Payouts

Create a Payout

POST https://api.cirro.io/v2/payouts

Parameters

ParameterTypeNote
user_idrequiredstringID of the associated user
reference_idstringID of the associated reference e.g. gig
reference_typestringType of the associated reference e.g. Gig
titlerequiredstringTitle of the payout
descriptionstringDescription of the payout
idempotency_keystringThe API supports idempotency for safely retrying requests without accidentally performing the same operation twice
amountrequirednumberAmount of payout
currencystringCurrency of paid amount, you can choose between "USD" and "EUR", by default it's "EUR"
billing_daterequiredstringWhen did the worker perform the work
cost_center_keyrequiredstringA EPAM project code for book keeping in finance. It is required if cost_center_data is not given
cost_center_datarequiredobjectA json object containing customer details. It is required if cost_center_key is not given

Cost Center Data Parameters

ParameterTypeNote
customer_idrequiredstringExternal ID of customer
companyrequiredstring
legal_entityrequiredstringThe legal entity of the customer
inhouserequiredstringYes or No

Example

1client = CirroIOV2::Client.new(...)
2client.Payout.create(
3  "amount": 1000,
4  "currency": "USD",
5  "title": "The Golden Bowl",
6  "description": "Language designers want to design the perfect language. They want to be able to say, 'My language is perfect. It can do everything.' But it's just plain impossible to design a perfect language, because there are two ways to look at a language. One way is by looking at what can be done with that language. The other is by looking at how we feel using that language-how we feel while programming.",
7  "billing_date": "2022-06-05",
8  "cost_center_key": "EPM-CRWD",
9  "user_id": 1
10)
Previous
Get Payouts