Grant statuses
Retrieve grant statuses
Retrieves grant statuses.
get/grant-status
Query parameters
slugstring
Filter to a single grant status by slug. Returns at most one item.
trashed'only' | 'all' | 'none'
Filter by soft-deletion mode.
- only - Show only soft-deleted resources.
- all - Include soft-deleted resources alongside live ones.
- none - Exclude soft-deleted resources.
order'created' | 'grant_count' | 'name' | 'order' | 'slug' | 'updated'
Column name to order by. An unrecognised value falls back to the default sort by updated.
dir'asc' | 'desc'
Sort in ascending or descending order.
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
Grant statuses retrieved.
Example response
{
"current_page": 1,
"data": [
{
"created": "2023-04-10T13:33:09Z",
"description": {
"en_GB": "<p>For grants that are currently in progress</p>"
},
"grant_count": 42,
"name": {
"en_GB": "In progress"
},
"order": 1,
"slug": "mwGbVggp",
"updated": "2026-01-08T13:10:51Z"
},
{
"created": "2023-04-10T13:33:27Z",
"description": {
"en_GB": "For completed grants"
},
"grant_count": 6,
"name": {
"en_GB": "Completed"
},
"order": 2,
"slug": "VgyLljqj",
"updated": "2024-09-03T11:38:00Z"
}
],
"first_page_url": "https://api.au.cr4ce.com/grant-status?per_page=10&page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://api.au.cr4ce.com/grant-status?per_page=10&page=1",
"next_page_url": "",
"path": "https://api.au.cr4ce.com/grant-status",
"per_page": 10,
"prev_page_url": "",
"to": 2,
"total": 2
}