TaskList URL

Display Tasks Using TaskList URLs

Rick Boggs avatar
Written by Rick Boggs
Updated over a week ago

Overview

Often developers will use the Limble API to pull a list of Task IDs, Location IDs, Asset IDs, etc.., but do not have an excellent way to display them. The TaskList URL allows you to display Tasks with all of the built-in Limble functionality easily.

Table of Contents

Examples

Select Specific Tasks

To list only the tasks with ID numbers 10-15:

app.limblecmms.com/taskList?taskID=10,11,12,13,14,15

Select Tasks for Specific Assets

To list only the tasks that are associated with Asset ID numbers 20-22 or 24:

app.limblecmms.com/taskList?assetID=20,21,22,24

Select Tasks from Specific Locations

To list only the tasks that are from Location ID number 30:

app.limblecmms.com/taskList?locationID=30

Select Tasks of a Specific Type

To list only work orders:

app.limblecmms.com/taskList?taskType=wo

To list only planned maintenance tasks:

app.limblecmms.com/taskList?taskType=pm

Select Tasks Based on Multiple Criteria

To list only the tasks with ID numbers 10-15 AND that are associated with asset IDs 20-22 AND are from locations 30 AND are work orders:

app.limblecmms.com/taskList?taskID=10,11,12,13,14,15&assetID=20,21,22&locationID=30&taskType=wo

Reference

Syntax

The syntax used for filtering the task list is the standard Query String syntax found in the URI Specification. The URL begins with the desired page (in this case, app.limblecmms.com/taskList), followed by a question mark, followed by a series of optional query parameters separated by ampersands.

Recognized Query Parameters

The following is a list of recognized query parameters that will filter the list of tasks on the taskList page. If you use other query parameters that are not listed, they will be ignored.

taskID

A comma-separated list of numerical Task IDs will filter tasks that match any of the IDs listed.

assetID

A comma-separated list of numerical Asset IDs will filter to any tasks that match one or more of the Asset IDs.

locationID

A comma-separated list of numerical Location IDs will filter to any tasks that are “from” one of the specified locations.

taskType

By entering one of the Task Type Strings below, the list will be filtered to any tasks of the specified type.

Task Type String

Description

wo

Work Orders

pm

Planned Maintenance

wr

Work Requests

pwo

Planned Work Orders

Related Articles

Still don’t see what you’re looking for? Check out our YouTube channel for more tips and tricks! You can also reach out to us anytime at support@limblecmms.com.

Did this answer your question?