v1
latestOpenAPI 3.1.02026-07-242735131.1 MBRecurring Incentives
Create Recurring Incentive
Create a Recurring Incentive, that is, a monthly paid incentive.
Incentives use the currency of the employment specified provided in the employment_id field.
Scopes
| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage expenses (employment_payments) | - | Manage incentives (incentive:write) |
post/v1/incentives/recurring
Headers
Authorizationstring required
Requires a Company-scoped access token obtained through the Authorization Code flow or the Refresh Token flow.
The refresh token needs to have been obtained through the Authorization Code flow.
Request body
Example request
{
"amount": 50000,
"amount_tax_type": "net",
"duration_in_months": "3",
"effective_date": "2021-12-20",
"employment_id": "5e55386e-4f4f-4def-92f4-bdc19a5ce77d",
"note": "Bonus for moving start date to an earlier date",
"type": "meal_allowance"
}Response
Success
Example response
{
"data": {
"recurring_incentive": {
"amount": 50000,
"amount_tax_type": "net",
"employment_id": "5e55386e-4f4f-4def-92f4-bdc19a5ce77d",
"end_date": "2022-12-20",
"id": "0073fcb5-b669-4e4a-b963-2a47744e75a1",
"note": "Monthly stipend to buy food",
"start_date": "2021-12-20",
"status": "active",
"type": "meal_allowance"
}
}
}