Review tasks
Retrieve review tasks
Retrieves review tasks.
get/review-task
Query parameters
action_atstring
Filter by action timestamp. Supported values:
- [before]=YYYY-MM-DDTHH:MM:SSZ
- [after]=YYYY-MM-DDTHH:MM:SSZ
- [on]=YYYY-MM-DDTHH:MM:SSZ
- [between]=[YYYY-MM-DDTHH:MM:SSZ,YYYY-MM-DDTHH:MM:SSZ]
created_atstring
Filter by creation timestamp. Supported values:
- [before]=YYYY-MM-DDTHH:MM:SSZ
- [after]=YYYY-MM-DDTHH:MM:SSZ
- [on]=YYYY-MM-DDTHH:MM:SSZ
- [between]=[YYYY-MM-DDTHH:MM:SSZ,YYYY-MM-DDTHH:MM:SSZ]
updated_atstring
Filter by update timestamp. Supported values:
- [before]=YYYY-MM-DDTHH:MM:SSZ
- [after]=YYYY-MM-DDTHH:MM:SSZ
- [on]=YYYY-MM-DDTHH:MM:SSZ
- [between]=[YYYY-MM-DDTHH:MM:SSZ,YYYY-MM-DDTHH:MM:SSZ]
decisionstring
Filter by decision name.
review_stagestring
Filter by review stage slug.
reviewerstring
Filter by reviewer name or email.
seasonstring
Filter by season slug. Use all to show all seasons.
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.
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 tasks retrieved.
Example response
{
"current_page": 1,
"data": [
{
"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"
}
],
"first_page_url": "https://api.au.cr4ce.com/review-task?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://api.au.cr4ce.com/review-task?page=1",
"next_page_url": "",
"path": "https://api.au.cr4ce.com/review-task",
"per_page": 10,
"prev_page_url": "",
"to": 1,
"total": 1
}