Fracttal →

Query a tasks plan

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.

ParameterTypeRequiredDescription
startIntegerOptionalInitial record number to be displayed by the query.
limitIntergerOptionalNúmero de registro final que retornará la consulta .

Output parameters

ParameterTypeDescription
descriptionTextDescription of the Task Plan
parent_descriptionTextLocation of the task list
task_numberNumberNumber of tasks in the task list
assets_numberNumberNumber 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

Language