---
title: "Create recurring budget"
method: POST
path: "/api/v1/budgets/recurring"
tags: ["Finance Management.Budgets", "ENTERPRISE"]
---

# Create recurring budget

`POST /api/v1/budgets/recurring`

Creates a recurring budget with a set periodicity.

## Request body

- CreateRecurringBudgetRequest — Create budget with the requested fields.
  - `amount` Amount, required
    - `currencyCode` string, required — The ISO 4217 currency code of the amount
    - `scale` integer, required — The scale of the amount. The `unscaledValue` is used with `scale` to accurately represent floating point values. The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
    - `unscaledValue` integer, required — The unscaled value of the amount. The `unscaledValue` is used with `scale` to accurately represent floating point values. The formula is `unscaledValue * (10^-scale)`. For example, if scale is 1 and unscaledValue is 1230, the end result would be 123.0.
  - `filter` Filter — The filter defining the budget and which transactions that is included in it. The configured fields of the filter are applied as logical and operator (intersection).
    - `accounts` BudgetFilterAccount[] — List of included accounts. Applied as logical or (union).
      - `id` string — The account ID.
    - `categories` BudgetFilterCategory[] — List of included categories. Applied as logical or (union).
      - `code` string — The category code.
    - `freeTextQuery` string — Query for a partial transaction description match.
    - `tags` BudgetFilterTag[] — List of included tags. Applied as logical or (union).
      - `key` string — The tag key.
  - `name` string — The name of the Budget.
  - `recurringPeriodicity` BudgetRecurringPeriodicity
    - `periodUnit` 'WEEK' | 'MONTH' | 'YEAR' — Recurring periodicity unit.

## Response `200`

A Successful response

- CreateBudgetResponse
  - `budgetSpecification` Finance20ManagementBudgets — unresolved $ref

## Other responses

- `401` — If the user is not authorized.
- `500` — For any unspecified error

---

[API](https://skmtc.net/tink/apis/tink-api.md) · [All operations](https://skmtc.net/tink/apis/tink-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tink/tink-api/revisions/23d8982b533d/schema)
