---
title: "Create a fund request"
method: POST
path: "/requests"
tags: ["Requests"]
---

# Create a fund request

`POST /requests`

## Request body

- CreateFundRequest
  - `amount` integer, required — Minor units
  - `currency` string, required
  - `description` string, required
  - `note` string
  - `type` 'budget' | 'payment' | 'top_up' | 'telecom'
  - `vendor` string
  - `budget` string
  - `sourceBudget` string
  - `balance` string
  - `card` string
  - `category` string

## Response `200`

OK

- object
  - `message` string, required
  - `status` boolean, required
  - `error` boolean, required
  - `data` object
    - `request` FundRequest — Fund request
      - `code` string
      - `amount` integer — Minor units
      - `currency` string
      - `description` string, nullable
      - `note` string, nullable
      - `type` 'budget' | 'payment' | 'top_up' | 'telecom'
      - `status` string
      - `channel` string, nullable
      - `platform` string, nullable
      - `user` User
        - `code` string
        - `firstName` string
        - `lastName` string
        - `middleName` string, nullable
        - `email` string, email
        - `name` string — Display name
        - `status` string
        - `role` string, nullable
      - `vendor` Vendor — Supplier / payee
        - `code` string
        - `name` string
        - `email` string, email, nullable
        - `description` string, nullable
        - `type` 'business' | 'individual', nullable
        - `status` string
        - `categories` Category[]
          - `code` string
          - `name` string
          - `description` string, nullable
          - `slug` string, nullable
          - `status` string
          - `isSubCategory` boolean
          - `parent` Category — recursive
          - `children` Category[]
      - `budget` CodeRef — code + name
        - `code` string
        - `name` string
      - `sourceBudget` CodeRef — code + name
        - `code` string
        - `name` string
      - `balance` CodeRef — code + name
        - `code` string
        - `name` string
      - `card` object, nullable
        - `code` string
        - `name` string
        - `last_4` string, nullable
      - `category` Category — Expense category
        - `code` string
        - `name` string
        - `description` string, nullable
        - `slug` string, nullable
        - `status` string
        - `isSubCategory` boolean
        - `parent` Category — recursive
        - `children` Category[]
      - `created_at` string, date-time
      - `updated_at` string, date-time

## Other responses

- `400` — Bad request
- `401` — Unauthorized

---

[API](https://skmtc.dev/bujeti/apis/bujeti-public-api.md) · [All operations](https://skmtc.dev/bujeti/apis/bujeti-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bujeti/bujeti-public-api/revisions/d2850fc5f576/schema)
