Query a tasks plan

Through this API you can query the list of task plans.

Input parameters

The following input parameters are optional and are used to paginate the query. By default, the Fracttal API returns only 100 records.

ParameterTypeRequiredDescription
startIntegerOptionalInitial record number that the query will display.
limitIntegerOptionalFinal record number that the query will return.
📘

This API supports dynamic filters

In addition to start and limit, you can filter by any field of the task plan using the notation field[operator]=value (for example description[like]=preventivo). See the available operators and usage examples in Dynamic filters.

Output parameters

ParameterTypeDescription
descriptionTextTask plan description
parent_descriptionTextTask plan location
task_numberNumberNumber of tasks in the task plan
assets_numberNumberNumber of assets associated with the task plan

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
}

TEST CONNECTION


Response

Language
LoadingLoading…