Tasks
HIVO API Key
HIVO User ID
Sort key. Allowed values are name, -name, createdAt, -createdAt, lastModified, -lastModified, dueDate, -dueDate. Defaults to -lastModified.
-lastModifiedPossible values: Maximum number of tasks to return (1–256). Defaults to 32.
32Number of tasks to skip (pagination) (0–65536). Defaults to 0.
0Task ID filter. May be repeated and/or provided as a comma‑separated list. Max 512 IDs.
["6abc234abc234abc2"]General search string (max 256 chars). Searches task name (case‑insensitive).
ApprovalAdmin‑only. Client ID to filter within (ObjectId).
7abc234abc234abc2Filters by archived status. true returns archived tasks; false returns non‑archived.
falseOK
Bad Request
Unauthorized
Forbidden
Too Many Requests
Internal Server Error
GET /api/rest/v1/tasks HTTP/1.1
Host: app.hivo.com.au
X-Api-Key: YOUR_API_KEY
X-User-Id: YOUR_API_KEY
Accept: */*
{
"meta": {},
"links": {
"self": "https://example.com",
"first": "https://example.com",
"prev": "https://example.com",
"next": "https://example.com"
},
"data": [
{
"type": "tasks",
"id": "text",
"attributes": {
"name": "text",
"createdAt": 1,
"lastModified": 1,
"dueDate": 1,
"clientId": "text",
"ownerEntityId": "text",
"targetEntityId": "text",
"archived": true,
"checklist": [
{}
],
"permissionLevel": 1,
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"links": {
"self": "https://example.com",
"thumbnail": {
"href": "https://example.com",
"meta": {
"version": "text",
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]
}HIVO API Key
HIVO User ID
Task ID
6abc234abc234abc2Admin‑only. Client ID to filter within (ObjectId).
7abc234abc234abc2OK
Bad Request
Unauthorized
Forbidden
Not Found
Too Many Requests
Internal Server Error
GET /api/rest/v1/tasks/{taskId} HTTP/1.1
Host: app.hivo.com.au
X-Api-Key: YOUR_API_KEY
X-User-Id: YOUR_API_KEY
Accept: */*
{
"meta": {},
"links": {
"self": "https://example.com",
"thumbnail": {
"href": "https://example.com",
"meta": {
"version": "text",
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"data": {
"type": "tasks",
"id": "text",
"attributes": {
"name": "text",
"createdAt": 1,
"lastModified": 1,
"dueDate": 1,
"clientId": "text",
"ownerEntityId": "text",
"targetEntityId": "text",
"archived": true,
"checklist": [
{}
],
"permissionLevel": 1,
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"links": {
"self": "https://example.com",
"thumbnail": {
"href": "https://example.com",
"meta": {
"version": "text",
"ANY_ADDITIONAL_PROPERTY": "anything"
}
},
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
}Last updated