Payouts
About Bonus Payouts
The payout object
Attributes
Parameter | Type | Note |
---|---|---|
id | string | ID of the payout |
object | string | always "payout" |
amount | number | Amount of payout |
currency | string | Currency of paid amount, you can choose between "USD" and "EUR", by default it's "USD" |
title | string | Title of the payout |
description | string | Description of the payout |
billing_date | string | When did the worker perform the work |
cost_center_key | string | A EPAM project code for book keeping in finance. It is required if cost_center_data is not given |
cost_center_data | object | A json object containing customer details. It is required if cost_center_key is not given |
reference_id | string | ID of the associated reference e.g. gig |
reference_type | string | Type of the associated reference e.g. Gig |
user_id | string | ID of the associated user |
Example
{
"id": "1",
"object": "payout",
"amount": 1000,
"currency": "EUR",
"title": "The Golden Bowl",
"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.",
"billing_date": "2022-06-05",
"cost_center_key": "EPM-CRWD",
"cost_center_data": null,
"reference_id": null,
"reference_type": null,
"user_id": "1"
}