Review task

Retrieve a review task

Retrieves the review task identified by the specified token.

get/review-task/{token}

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

Review task retrieved.

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"
}

Changes