Chapters

Create a chapter

Creates a chapter.

post/chapter

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

seasonstring required

Slug of the season.

status'active' | 'inactive' required

One of the following values.

max_image_widthinteger

Maximum image width.

managersstring[]

Array of user slugs for chapter managers.

Response

Chapter created.

createdstring date-time

Date and time when the chapter was created.

descriptionobject

Description shown for the chapter.

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

Display name of the chapter.

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

Short URL-safe identifier for the chapter.

statusstring

Localized status label for the chapter, such as Active or Inactive, rendered according to the request's X-Api-Language.

This is the response form and differs from the value used when creating or updating a chapter, which is the active or inactive enum.

updatedstring date-time

Date and time when the chapter was last updated.

Example response

{
  "created": "2024-12-12T09:41:21Z",
  "description": {
    "en_GB": "Chapter for the Glenlivet region."
  },
  "managers": [
    {
      "slug": "AbCdEfGh",
      "link": "https://api.au.cr4ce.com/user/AbCdEfGh",
      "first_name": "John",
      "last_name": "Smith"
    },
    {
      "slug": "CdEfGhIj",
      "link": "https://api.au.cr4ce.com/user/CdEfGhIj",
      "first_name": "Carol",
      "last_name": "Murphy"
    }
  ],
  "name": {
    "en_GB": "Glenlivet"
  },
  "season": {
    "slug": "EfGhIjKl",
    "link": "https://api.au.cr4ce.com/season/EfGhIjKl",
    "name": {
      "en_GB": "2026"
    }
  },
  "slug": "GhIjKlMn",
  "status": "Active",
  "updated": "2026-04-13T13:45:50Z"
}

Changes