Using this API you can query the list of task lists.
EndPoint
https://app.fracttal.com/api/groups_tasks/
Input Parameters
The following input parameters are optional, which are used to perform the pagination of the query. By default Fracttal API returns only 100 records.
Parameter | Field type | Required | Description |
start | Integer | Optional | Initial record number to be displayed by the query. |
limit | Integer | Optional | Final record number that the query will return. |
Output parameters
Parameter | Field type | Description |
description | Text | Task list description |
parent_description | Text | Task list location |
task_number | Number | Number of tasks in the task list |
assets_number | Number | Number of assets associated with the Task List |
Example:
Request: https://app.fracttal.com/api/groups_tasks
Example Response:
{
"success": true,
"message": "200",
"data": [
{
"description": "Air",
"parent_description": "\/\/ SOUTH AMERICA \/ CHILE\/ ",
"task_number": 2,
"assets_number": 2
},
{
"description": " AIR CONDITIONERS - Pacific Terminal South ",
"parent_description": "\/\/ ",
"task_number": 4,
"assets_number": 1
},
{
"description": " DEVICE ADJUSTMENT ",
"parent_description": "\/\/ CHILE 1\/ SANTIAGO DE CHILE\/ COSTANERA CENTER\/ ",
"task_number": 2,
"assets_number": 2
}
],
"total": 3
}