v50

latestOpenAPI 3.1.0Creative Force Client Subscription Termsraw.githubusercontent.com2026-07-137852387.4 KB
Review tasks

Create a review task

Creates a review task.

post/review-task

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 non are provided, the account default language is returned.

Value all overrides any other values present.

You can request multiple languages using a comma-separated string of languages.

The selected language must be supported by your account or a 400 error is returned.

Request body

review_stagestring required

Slug of the review stage. Review stages reviewed by referees cannot be used to create review tasks.

entrystring required

Slug of the entry.

Response

Review task created.

action_atstring date-time nullable

Date and time the review task was actioned, in ISO 8601 format.

null when the task has not yet been actioned.

createdstring date-time

Date and time the review task was created, in ISO 8601 format.

decisionstring nullable

Decision recorded against the review task.

null when no decision has been recorded.

tokenstring

Token uniquely identifying the review task.

updatedstring date-time

Date and time the review task was last updated, in ISO 8601 format.

Example response

{
  "action_at": null,
  "category": {
    "slug": "CdEfGhIj",
    "link": "https://api.au.cr4ce.com/category/CdEfGhIj",
    "name": {
      "en_GB": "Photography"
    }
  },
  "created": "2026-01-15T09:00:00Z",
  "decision": null,
  "entry": {
    "slug": "AbCdEfGh",
    "link": "https://api.au.cr4ce.com/entry/AbCdEfGh",
    "title": "Sustainable Cities Initiative"
  },
  "review_stage": {
    "slug": "EfGhIjKl",
    "link": "https://api.au.cr4ce.com/review-stage/EfGhIjKl",
    "name": {
      "en_GB": "First round"
    }
  },
  "reviewer": [
    {
      "name": "Jane Smith",
      "email": "jane.smith@example.com"
    }
  ],
  "season": {
    "slug": "QrStUvWx",
    "link": "https://api.au.cr4ce.com/season/QrStUvWx",
    "name": {
      "en_GB": "2025"
    }
  },
  "token": "REDACTED",
  "updated": "2026-01-15T09:00:00Z"
}