Forms

Retrieve forms

Retrieves forms.

get/form

Query parameters

form_type'entry' | 'report'

Filter by form type.

seasonstring

Filter by season slug. Use all to show all seasons.

archived'only' | 'all' | 'none'

Filter by archive mode.

  • only - Show only archived resources.
  • all - Include archived resources.
  • none - Exclude archived resources.
deleted'only' | 'included' | 'none'

Filter by deletion mode.

  • only - Show only deleted resources.
  • included - Include deleted resources.
  • none - Exclude deleted resources.
pagestring

Specify the page number to return.

per_pagestring

Limit the number of items returned to between 1 and 100.

order'callToAction' | 'chapter_option' | 'content_block' | 'created' | 'name' | 'season' | 'slug' | 'type' | 'updated'

Column name to order by. An unrecognised value falls back to the default sort by created.

dir'asc' | 'desc'

Sort in ascending or descending order.

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

Forms retrieved.

current_pageinteger

Number of the page returned by this response. The first page is 1.

first_page_urlstring uri

URL of the first page in the result set.

frominteger

Position of the first record on this page within the full result set. The first record is at position 1.

last_pageinteger

Number of the last page. Equals the total number of pages.

last_page_urlstring uri

URL of the last page in the result set.

next_page_urlstring

URL of the next page in the result set.

Empty string when the current page is the last page.

pathstring uri

Canonical URL of the endpoint, without query parameters.

per_pageinteger

Maximum number of records returned per page.

prev_page_urlstring

URL of the previous page in the result set.

Empty string when the current page is the first page.

tointeger

Position of the last record on this page within the full result set.

totalinteger

Total number of records across all pages.

Example response

{
  "current_page": 1,
  "data": [
    {
      "callToAction": {
        "en_GB": ""
      },
      "chapter_option": "all",
      "content_block": null,
      "created": "2026-03-16T08:48:37Z",
      "name": {
        "en_GB": "Non-default form (copy)"
      },
      "season": {
        "slug": "wboyrBmo",
        "link": "https://api.au.cr4ce.com/season/wboyrBmo",
        "name": {
          "en_GB": "2026"
        }
      },
      "slug": "dRRJnXKl",
      "type": "entry",
      "updated": "2026-03-16T08:48:37Z"
    },
    {
      "callToAction": {
        "en_GB": ""
      },
      "chapter_option": "all",
      "content_block": null,
      "created": "2025-12-23T14:41:16Z",
      "name": {
        "en_GB": "grant report form QA"
      },
      "season": {
        "slug": "wboyrBmo",
        "link": "https://api.au.cr4ce.com/season/wboyrBmo",
        "name": {
          "en_GB": "2026"
        }
      },
      "slug": "rkkkkjle",
      "type": "report",
      "updated": "2025-12-23T14:41:16Z"
    }
  ],
  "first_page_url": "https://api.au.cr4ce.com/form?per_page=10&page=1",
  "from": 1,
  "last_page": 2,
  "last_page_url": "https://api.au.cr4ce.com/form?per_page=10&page=2",
  "next_page_url": "https://api.au.cr4ce.com/form?per_page=10&page=2",
  "path": "https://api.au.cr4ce.com/form",
  "per_page": 10,
  "prev_page_url": "",
  "to": 10,
  "total": 20
}

Changes