toloka.client.TolokaClient.create_user_bonus
| Source code
Issues payments directly to a Toloker.
You can send a maximum of 10,000 requests of this kind per day.
Parameters | Type | Description |
---|---|---|
user_bonus | UserBonus | To whom, how much to pay and for what. |
operation_id | Optional[UUID] | Operation ID. If asynchronous creation is used, by this identifier you can later get results of creating bonuses. |
skip_invalid_items | Optional[bool] | Validation parameters of objects:
|
Returns:
Created bonus.
Return type:
Examples:
Create bonus for specific assignment.
import decimalnew_bonus = toloka_client.create_user_bonus( UserBonus( user_id='1', amount=decimal.Decimal('0.50'), public_title={ 'EN': 'Perfect job!', 'RU': 'Прекрасная работа!', }, public_message={ 'EN': 'You are the best!', 'RU': 'Молодец!', }, assignment_id='012345' ))