Task List
Add and remove tasks, customise your front-end task list and remove completed items.
The task list functionality allows you to create customised action items for your users to complete and sync their out of platform actions.
The Task Object Array
The custom task list has the following attributes
Create Custom Task List
Creating a custom task list for your users to complete is a great way to increase engagement and match user actions to your business objectives.
When you submit a custom task list, it replaces the default one.
Code Example
Request Details
Creates a custom task list for your company.
PATCH
YOUR_API_URL/v1/company/tasklist
If you would like to update an individual task you will need to send the full list with the updated task.
Headers
Authorization*
String
Bearer <API_KEY>
Request Body
tasks*
Array
An array of task objects
Retrieve Custom Task List
Retrieve the custom task list for your company.
Code Example
Request Details
Retrieve the custom task list for your company.
GET
YOUR_API_URL/v1/company/tasklist
Headers
Authorization*
String
Bearer <API_KEY>
Get Completed/Incomplete Tasks of User
See which of the internal application tasks the user has completed or not completed.
Code Example
Request Details
Returns a list of completed/incomplete tasks for a client.
GET
YOUR_API_URL/clients/:clientId/tasks?status={taskStatus}
Path Parameters
clientId*
String
ID associated with the client record.
Query Parameters
taskStatus
String
Either “complete” or “incomplete”. Defaults to complete.
Headers
Authorization*
String
Bearer <API_KEY>
Last updated