Allocations

Create an allocation

Creates an allocation.

post/allocation

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

amountnumber required

Amount to allocate to the entry, in the fund's currency.

Cannot exceed the fund's available budget.

entrystring required

Slug of the entry to allocate funds to.

fundstring required

Slug of the fund to draw the allocation from.

Response

Allocation created.

amountnumber

Total amount allocated to the entry from the fund, in the fund's currency.

createdstring date-time

Date and time when the allocation was created.

currencystring

ISO 4217 currency code of the allocation's amounts, drawn from the fund's currency.

paidnumber

Outstanding amount due on the allocation, in the fund's currency, after deducting payments already made.

slugstring

URL-safe identifier of the allocation.

updatedstring date-time

Date and time when the allocation was last updated.

Example response

{
  "amount": 1000,
  "chapter": {
    "slug": "VbaERKdP",
    "link": "https://api.au.cr4ce.com/chapter/VbaERKdP",
    "name": {
      "en_GB": "Glenlivet"
    }
  },
  "created": "2026-06-02T13:05:18Z",
  "currency": "USD",
  "entrant": {
    "slug": "BwXxQawR",
    "link": "https://api.au.cr4ce.com/user/BwXxQawR",
    "name": "Rachel Martin",
    "first_name": "Rachel",
    "last_name": "Martin"
  },
  "entry": {
    "slug": "DeqEWpwO",
    "id": 69146,
    "title": "Project title",
    "link": "https://api.au.cr4ce.com/entry/DeqEWpwO"
  },
  "fund": {
    "slug": "KYEKONwe",
    "link": "https://api.au.cr4ce.com/fund/KYEKONwe",
    "name": {
      "en_GB": "USD"
    }
  },
  "paid": 250,
  "season": {
    "slug": "wboyrBmo",
    "link": "https://api.au.cr4ce.com/season/wboyrBmo",
    "name": {
      "en_GB": "2026"
    }
  },
  "slug": "NxlGMaaj",
  "updated": "2026-06-02T13:05:18Z"
}

Changes