get https://app.fracttal.com/api/groups_tasks
Using this API you can query the list of task lists.
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 | Type | Required | Description |
---|---|---|---|
start | Integer | Optional | Initial record number to be displayed by the query. |
limit | Interger | Optional | Número de registro final que retornará la consulta . |
Output parameters
Parameter | Type | Description |
---|---|---|
description | Text | Description of the Task Plan |
parent_description | Text | Location of the task list |
task_number | Number | Number of tasks in the task list |
assets_number | Number | Number of assets associated with the task list |
Example:
Request: (GET) https://app.fracttal.com/api/groups_tasks/
{
"success": true,
"message": "200",
"data": [
{
"description": "Aires",
"parent_description": "\/\/ AMERICA DEL SUR\/ CHILE\/ ",
"task_number": 2,
"assets_number": 2
},
{
"description": "AIRES ACONDICIONADOS - Terminal Pacifico Sur",
"parent_description": "\/\/ ",
"task_number": 4,
"assets_number": 1
},
{
"description": "AJUSTE DE ARTEFACTOS",
"parent_description": "\/\/ CHILE 1\/ SANTIAGO DE CHILE\/ COSTANERA CENTER\/ ",
"task_number": 2,
"assets_number": 2
}
],
"total": 3
}
Rest It