Form

Retrieve a form

Retrieves the form identified by the specified slug.

get/form/{form_slug}

Path parameters

form_slugstring required

Slug of the form.

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.

Response

Form retrieved.

callToActionobject

Call to action of the form.

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.

chapter_option'all' | 'select'

How chapters are applied to the form.

  • all - Available to every chapter.
  • select - Available to selected chapters only.
createdstring date-time

Date and time when the form was created.

nameobject

Name of the form.

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 form.

type'entry' | 'report'

Type of the form.

  • entry - Collects entries.
  • report - Collects grant reports.
updatedstring date-time

Date and time when the form was last updated.

Example response

{
  "callToAction": {
    "en_GB": ""
  },
  "chapter_option": "select",
  "content_block": null,
  "created": "2024-09-30T10:11:17Z",
  "name": {
    "en_GB": "Cycling grants"
  },
  "season": {
    "slug": "wboyrBmo",
    "link": "https://api.au.cr4ce.com/season/wboyrBmo",
    "name": {
      "en_GB": "2026"
    }
  },
  "slug": "WvmnJgjV",
  "type": "entry",
  "updated": "2025-10-16T08:00:39Z"
}

Changes