Funds

Create a fund

Creates a fund.

post/fund

Headers

Accept'application/vnd.Creative Force.v2.3+json' | 'application/vnd.Creative Force.v2.3+xml' required

Defines the response type.

x-api-languagestring[]

Defines the languages included in the response. If omitted, the account default language is used.

Value all overrides any other values present.

Request body

budgetnumber required

Total budget of the fund, in the fund's currency.

currencystring required

ISO 4217 currency code of the fund's amounts.

Response

Fund created.

allocatednumber

Amount allocated from the budget, in the fund's currency.

availablenumber

Amount still available to allocate, in the fund's currency. Equal to the budget minus the allocated amount.

budgetnumber

Total budget of the fund, in the fund's currency.

createdstring date-time

Date and time when the fund was created.

currencystring

ISO 4217 currency code of the fund's amounts.

descriptionobject

Description of the fund.

Map keyed by locale code (for example, en_GB or fr_FR). Keys are drawn from the languages enabled on the account. Values are the translated string.

nameobject

Name of the fund.

Map keyed by locale code (for example, en_GB or fr_FR). Keys are drawn from the languages enabled on the account. Values are the translated string.

slugstring

URL-safe identifier of the fund.

updatedstring date-time

Date and time when the fund was last updated.

Example response

{
  "allocated": 91661,
  "available": 8339,
  "budget": 100000,
  "created": "2023-11-21T09:57:43Z",
  "currency": "GBP",
  "description": {
    "en_GB": "Seed funding for first-time entrants."
  },
  "name": {
    "en_GB": "Starter"
  },
  "slug": "KEmBgExL",
  "updated": "2026-06-02T13:05:08Z"
}

Changes